All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
Abstract class for all types of trace information. More...
#include <TraceInfo.h>
Public Member Functions | |
| std::string | toString () const |
| TraceInfo (const char *valName, const void *val) | |
| TraceInfo (const char *valName, Variant val) | |
Abstract class for all types of trace information.
Abstract class for all types of trace information. toString() returns a string that will be inserted in backtraces in case of error.
| GpCoreTools::TraceInfo::TraceInfo | ( | const char * | valName, |
| const void * | val | ||
| ) | [inline] |
{
_valName=valName;
_val=val;
}
| GpCoreTools::TraceInfo::TraceInfo | ( | const char * | valName, |
| Variant | val | ||
| ) | [inline] |
{
_valName=valName;
_val=val;
}
| std::string GpCoreTools::TraceInfo::toString | ( | ) | const |
References GpCoreTools::Variant::toString().
{
return _val.toString();
}