//: C10:Trace.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Creating a trace file #ifndef TRACE_H #define TRACE_H #include #ifdef TRACEON ofstream TRACEFILE__("TRACE.OUT"); #define cout TRACEFILE__ #endif #endif // TRACE_H ///:~