#include <VectorLoggable.h>
Public Member Functions | |
VectorLoggable (const std::vector< T > &vector) | |
Constructor. Sets the wrapped vector. | |
virtual void | LogContentsOn (LogContentsPrinter &logContentsPrinter) const |
Passes all the elements of the wrapped vector to the LogContentsPrinter instance via LogContent() method. | |
virtual std::tstring | GetTypeName () const |
Returns the type of wrapped vector. | |
virtual std::tstring | GetHumanReadableTypeName () const |
virtual std::tstring | GetStringValue () const |
Returns. | |
Protected Attributes | |
const std::vector< T > & | m_vector |
Reference to the wrapped vector. |
T | Type of the values stored in the wrapped vector. |
Definition at line 36 of file VectorLoggable.h.