#include <Logger.h>
Public Member Functions | |
CmdLogger (void) | |
~CmdLogger (void) | |
void | print (const wchar *text) |
Log null terminated unicode string. | |
void | print (const wchar *text, const char *file, const int line) |
void | println (const wchar *text) |
void | println (const wchar *text, const char *file, const int line) |
Command line logger. Starts a command line and logs to it.
Definition at line 31 of file Logger.h.
CmdLogger::CmdLogger | ( | void | ) |
Definition at line 3 of file Logger.cpp.
CmdLogger::~CmdLogger | ( | void | ) |
Definition at line 8 of file Logger.cpp.
void CmdLogger::print | ( | const wchar * | text | ) | [virtual] |
void CmdLogger::print | ( | const wchar * | text, | |
const char * | file, | |||
const int | line | |||
) | [virtual] |
Log null terminated unicode string with the filename and the line number.
Implements Log.
Definition at line 21 of file Logger.cpp.
void CmdLogger::println | ( | const wchar * | text | ) | [virtual] |
Log null terminated unicode string and start a new line.
Implements Log.
Definition at line 30 of file Logger.cpp.
void CmdLogger::println | ( | const wchar * | text, | |
const char * | file, | |||
const int | line | |||
) | [virtual] |
Log null terminated unicode string with the filename and the line number and start a new line.
Implements Log.
Definition at line 38 of file Logger.cpp.