Go to the documentation of this file. 64 #define IFTRACE if (trace) std::cerr 65 #define IFDOTRACE if (trace) 68 #define IFTRACE if (0) std::cerr 69 #define IFDOTRACE if (0) 72 #define TRACE_METHOD(Class, method) \ 73 IFTRACE << (unsigned long) this << "->" << #Class << "::" << #method << " " 74 #define TRACE_STATIC_METHOD(Class, method) \ 75 IFTRACE << "STATIC" << "->" << #Class << "::" << #method << " " 76 #define SET_TRACE_IMPL(module) void SetTrace ## module( int trc) { trace = trc; }