#include <Logger.h>
Public Member Functions | |
DummyLogger (void) | |
~DummyLogger (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) |
This logger does not log anything. It can be used in release versions of a program.
Definition at line 48 of file Logger.h.
DummyLogger::DummyLogger | ( | void | ) |
Definition at line 47 of file Logger.cpp.
DummyLogger::~DummyLogger | ( | void | ) |
Definition at line 50 of file Logger.cpp.
void DummyLogger::print | ( | const wchar * | text | ) | [virtual] |
void DummyLogger::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 56 of file Logger.cpp.
void DummyLogger::println | ( | const wchar * | text | ) | [virtual] |
Log null terminated unicode string and start a new line.
Implements Log.
Definition at line 59 of file Logger.cpp.
void DummyLogger::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 62 of file Logger.cpp.