home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Quake 'em
/
QUAKEEM.BIN
/
doom_i
/
program
/
dmreject.exe
/
SOURCE.ZIP
/
DEBUG.HPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-06-01
|
374 b
|
27 lines
#ifndef __DEBUG_HPP__
#define __DEBUG_HPP__
#include <fstream.h>
class cdebugclass
{
public:
ofstream out;
cdebugclass ();
~cdebugclass ();
};
extern cdebugclass cdebug;
#ifdef DEBUG
#define ONDEBUG(x) x
#else
#define ONDEBUG(x)
#endif
#endif