/* debug.h * * Debugging class interface. * * Bruce M. Bolden * August 25, 1998 */ #ifndef DEBUG_H #define DEBUG_H 1 #include #include class Debug { public: Debug(); void DebugOn(); void DebugOff(); void DebugMsg( char *msg ); void DebugMsg( char *msg, int iVal ); private: int bDebug; //bool bDebug; // not with CC ofstream dbFile; // not with g++ }; #endif