Engine::InstallReporter
Defined in:
Installs a report handler.
C4Engine.h
Prototype
static void InstallReporter(Reporter *reporter);
Parameters
reporter |
The reporter to install. |
Description
The InstallReporter
function installs a reporter whose associated report callback function is invoked whenever the Engine::Report
function is called. Multiple reporters may be installed simultaneously, and each corresponding report callback function is called when a message is reported to the engine.A reporter is uninstalled by destroying its associated class instance.
See Also