![]() |
Angel
A 2D Game Prototyping Engine
|
Abstract base class for logs. More...
#include <Log.h>
Inheritance diagram for DeveloperLog:Public Member Functions | |
| virtual | ~DeveloperLog () |
| virtual void | Log (const String &val)=0 |
| void | Printf (const char *format,...) |
The DeveloperLog simply provides an interface for other Log classes to implement.
| virtual DeveloperLog::~DeveloperLog | ( | ) | [inline, virtual] |
| virtual void DeveloperLog::Log | ( | const String & | val | ) | [pure virtual] |
Logs a string.
Pure virtual function; must be implemented in the subclass.
| val | The string to be logged. |
Implemented in CompoundLog, SystemLog, FileLog, and ConsoleLog.
| void DeveloperLog::Printf | ( | const char * | format, |
| ... | |||
| ) |
Log a formatted string using printf syntax.
http://www.cplusplus.com/reference/clibrary/cstdio/printf.html
| format | The format string |
| ... | The parameters to substitute into the format string |


1.7.5.1