C4 Engine
C4 Engine API Documentation

Engine::InstallReporter

Defined in:  C4Engine.h
Installs a report handler.
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

Reporter

Engine::Report