#include <Logger.h>
Inheritance diagram for CLogger:
Public Member Functions | |
virtual int | Open (char *pcFilename, bool bKeepOpen=false, bool bAppend=false) |
virtual int | Write (const char *pcFormat,...) |
virtual int | Append (const char *pcFormat,...) |
virtual int | Erase () |
virtual int | Close () |
int | GetError () |
This class logs passed messages (that can be formatted) into the
specified file. It has the ability to overwrite, bAppend, and keep the
specified file open until the explicit command to close is given.
Definition at line 25 of file Logger.h.
|
Appends specified CString in given format to opened file References Close(). |
|
Closes opened file Reimplemented in CGlobalLogger. Definition at line 150 of file Logger.cpp. |
|
Erases opened file Definition at line 138 of file Logger.cpp. |
|
Returns an error code Definition at line 161 of file Logger.cpp. |
|
Opens file for write access References Close(). Referenced by CGlobalLogger::Open(). |
|
Writes CString in format specified to opened file References Close(). Referenced by CFontManager::Destroy(), CGUIButton::LoadButtonStates(), CTextureManager::LoadXML(), CMaterialManager::LoadXML(), CGUIWindow::LoadXML(), CGUIStatic::LoadXML(), CGUIScrollBar::LoadXML(), CGUIRadioGroup::LoadXML(), CGUIProgressBar::LoadXML(), CGUIMenuEntry::LoadXML(), CGUIListBox::LoadXML(), CGUIElement::LoadXML(), CGUIDropList::LoadXML(), CGUIBorder::LoadXML(), CFontManager::LoadXML(), and CAnimationManager::LoadXML(). |