#include <stdErrPlugin.h>

Public Member Functions | |
| void | handleError (daeString msg) |
| void | handleWarning (daeString msg) |
| stdErrPlugin () | |
| virtual | ~stdErrPlugin () |
The stdErrPlugin class is the default implementation of daeErrorHandler. It routes the Error and Warning messaged to stdout.
Definition at line 19 of file stdErrPlugin.h.
| stdErrPlugin::stdErrPlugin | ( | ) |
| virtual stdErrPlugin::~stdErrPlugin | ( | ) | [virtual] |
| void stdErrPlugin::handleError | ( | daeString | msg | ) | [virtual] |
This function is called when there is an error and a string needs to be sent to the user. You must overwrite this function in your plugin.
| msg | Error message. |
Implements daeErrorHandler.
| void stdErrPlugin::handleWarning | ( | daeString | msg | ) | [virtual] |
This function is called when there is a warning and a string needs to be sent to the user. You must overwrite this function in your plugin.
| msg | Warning message. |
Implements daeErrorHandler.