#include <Logger.h>
Public Member Functions | |
virtual | ~Log () |
virtual void | print (const wchar *text)=0 |
Log null terminated unicode string. | |
virtual void | print (const wchar *text, const char *file, const int line)=0 |
virtual void | println (const wchar *text)=0 |
virtual void | println (const wchar *text, const char *file, const int line)=0 |
Logger Interface. Used to print logging text through an interface. The printf functions can also be used.
Definition at line 8 of file Logger.h.
virtual void Log::print | ( | const wchar * | text | ) | [pure virtual] |
Log null terminated unicode string.
Implemented in CmdLogger, and DummyLogger.
virtual void Log::print | ( | const wchar * | text, | |
const char * | file, | |||
const int | line | |||
) | [pure virtual] |
Log null terminated unicode string with the filename and the line number.
Implemented in CmdLogger, and DummyLogger.
virtual void Log::println | ( | const wchar * | text | ) | [pure virtual] |
Log null terminated unicode string and start a new line.
Implemented in CmdLogger, and DummyLogger.
virtual void Log::println | ( | const wchar * | text, | |
const char * | file, | |||
const int | line | |||
) | [pure virtual] |
Log null terminated unicode string with the filename and the line number and start a new line.
Implemented in CmdLogger, and DummyLogger.