Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/debug.h @ 3204

Last change on this file since 3204 was 3204, checked in by bensch, 19 years ago

orxonox/trunk: added simple debug-function PRINTF()

File size: 242 bytes
Line 
1#ifndef _DEBUG_H
2#define _DEBUG_H
3
4#ifdef  DEBUG
5 #define PRINTF(x) \
6        if (verbose >= x ) \
7           printf ("%s:%d:", __FILE__, __LINE__); \
8        if (verbose >= x) printf
9#else 
10 #define PRINTF(x)
11#endif
12
13
14#endif /* _DEBUG_H */
Note: See TracBrowser for help on using the repository browser.