C/C++
trace.txt
Associated article: C++ Stack Traces
Tags: C/C++ Tools
Published source code accompanying the article by Noam Cohen in which he presents a tool that collects information in real time and displays the results, thereby providing a context in which certain errors occur. Also see TRACE.ZIP.
C++ Stack Traces
by Noam Cohen
Listing One
#define DECLARE_STACKTRACE StackTrace g_StackTracer;
// helper class for making life easier for the users of the StackTrace
// When entering a function, simply construct an object of this class
class AutoStackTrackEntry
{
public:
...


