#include <TraceTarget.h>
Inheritance diagram for TraceTarget:
Public Member Functions | |
virtual | ~TraceTarget () |
virtual void | notifyTrace (std::string source, TraceLevel level, std::string message)=0 |
Receives notification when a trace event occurs. | |
virtual TraceLevel | getSourceTraceLevel (std::string source)=0 |
Gets the level at which a particular source should be traced. |
Definition at line 53 of file TraceTarget.h.
TraceTarget::~TraceTarget | ( | ) | [virtual] |
virtual void TraceTarget::notifyTrace | ( | std::string | source, | |
TraceLevel | level, | |||
std::string | message | |||
) | [pure virtual] |
Receives notification when a trace event occurs.
source | the facility from which the message originated | |
level | the trace event severity level | |
message | the text of the message |
Implemented in JavaTraceTarget, and TestBase.
Referenced by TraceSource::trace().
virtual TraceLevel TraceTarget::getSourceTraceLevel | ( | std::string | source | ) | [pure virtual] |
Gets the level at which a particular source should be traced.
source | name of source to be traced |
Implemented in JavaTraceTarget, and TestBase.