#include <FileLogger.h>
Inheritance diagram for Moteur3D::FileLogger:
Public Member Functions | |
FileLogger (const string &Filename=string("./out.log")) | |
Constructor. | |
~FileLogger () | |
Destructor. Not much to say about it except that it closes the file. | |
virtual int | Log (const string &Message) |
Logs a wide string into the desired file. | |
virtual int | LogLine (const string &Message) |
Logs a wide string into the desired file. Adds a carriage return at the end of the line. | |
Private Attributes | |
ofstream | m_File |
File pointer. |
|
Constructor.
|
|
Destructor. Not much to say about it except that it closes the file.
|
|
Logs a wide string into the desired file.
Implements Moteur3D::BaseLogger. |
|
Logs a wide string into the desired file. Adds a carriage return at the end of the line.
Implements Moteur3D::BaseLogger. |
|
File pointer.
|