General access to debugging.
More...
Inherits CDebugger.
Debug * coat::scripto::Debug::instance |
( |
| ) |
|
|
static |
DebugDraw coat::scripto::Debug::draw |
( |
| ) |
const |
Access to viewport-output log.
Debug dbg;
DebugLog drw = dbg.draw();
- See Also
- log()
DebugLog coat::scripto::Debug::log |
( |
| ) |
const |
Access to text-output log.
Debug dbg;
DebugLog
log = dbg.log();
- See Also
- draw()
std::string coat::scripto::Debug::callstack |
( |
| ) |
const |
Returns all calls from the stack.
- Todo:
- Debug& clear();
Debug dbg;
DebugLog log = dbg.log();
log += dbg.callstack();
std::string coat::scripto::Debug::variables |
( |
| ) |
const |
Returns a list of all local variables.
Debug dbg;
DebugLog log = dbg.log();
log += dbg.variables();
- See Also
- vars()
std::string coat::scripto::Debug::vars |
( |
| ) |
const |
|
inline |
std::string coat::scripto::Debug::globalVariables |
( |
| ) |
const |
Returns a list of all global variables.
Debug dbg;
DebugLog log = dbg.log();
log += dbg.globalVariables();
- See Also
- gvars()
std::string coat::scripto::Debug::gvars |
( |
| ) |
const |
|
inline |