#include <wait.h>
Inheritance diagram for CallStack:

SubFunc(arg1, arg2, CallStack("my func at place such and such", &callStack));
The advantage of this approach is that it is easy to use and should be very efficient, involving no allocation from the heap, just a linked list of stack objects containing pointers to static ASCIIZ strings (or possibly additional but simple data if derived).
Definition at line 102 of file wait.h.
Public Member Functions | |
| CallStack (char const *i, CallStack const *p) | |
| CallStack const * | Prev () const |
| virtual std::string | Format () const |
Protected Attributes | |
| char const * | m_info |
| CallStack const * | m_prev |
1.5.1-p1