TCOM_Application_Event_Logger
What: class
Ancestor: TCommon_COM_Interface
File: _AEL
Layer: 1
Platforms: C++, C#, Javascript, Pascal (Object), PHP, Python
This abstract base class defines a means of logging information. The methods are
all stdcall calling convention. The class has the following methods:
Log_Event
void Log_Event( char* S )
procedure Log_Event( const S : string )
Logs an event with the text of the passed string.
Trace_Enter
void Trace_Enter( char* S )
procedure Trace_Enter( const S : string )
Logs the entering of a routine. The routine name is passed.
Trace_Exit
void Trace_Exit( char* S )
procedure Trace_Exit( const S : string )
Logs the exiting of a routine. The routine name is passed.