#include <CArchLogWindows.h>
Inherits IArchLog.
Inheritance diagram for CArchLogWindows:
Public Member Functions | |
CArchLogWindows () | |
virtual | ~CArchLogWindows () |
virtual void | openLog (const char *name) |
Open the log. | |
virtual void | closeLog () |
Close the log. | |
virtual void | showLog (bool showIfEmpty) |
Show the log. | |
virtual void | writeLog (ELevel, const char *) |
Definition at line 26 of file CArchLogWindows.h.
void CArchLogWindows::closeLog | ( | ) | [virtual] |
Close the log.
Close the log.
Implements IArchLog.
Definition at line 42 of file CArchLogWindows.cpp.
void CArchLogWindows::openLog | ( | const char * | name | ) | [virtual] |
Open the log.
Opens the log for writing. The log must be opened before being written to.
Implements IArchLog.
Definition at line 34 of file CArchLogWindows.cpp.
References CArchMiscWindows::isWindows95Family().
void CArchLogWindows::showLog | ( | bool | showIfEmpty | ) | [virtual] |
Show the log.
Causes the log to become visible. This generally only makes sense for a log in a graphical user interface. Other implementations will do nothing. Iff showIfEmpty
is false
then the implementation may optionally only show the log if it's not empty.
Implements IArchLog.
Definition at line 51 of file CArchLogWindows.cpp.