Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

DebugSupport.h

Go to the documentation of this file.
00001 // 00002 // Copyright 2004 P&P Software GmbH - All Rights Reserved 00003 // 00004 // DebugSupport.h 00005 // 00006 // Version 1.0 00007 // Date 20.10.03 00008 // Author R. Totaro 00009 // 00010 // Change Record: 00011 00026 #ifndef DebugSupportH 00027 #define DebugSupportH 00028 00029 #ifndef CompilerSwitchesH 00030 #error The "CompilerSwitches.h" header file must be included before this file. 00031 #endif 00032 00033 #if defined(USE_SYSTEM_ASSERT) || defined(NDEBUG) 00034 #include <assert.h> 00035 #else 00036 #include <stdio.h> 00037 #undef assert 00038 #define assert(expr) ((expr) || fprintf(stderr,"*** WARNING ***: Assertion (%s) failed in file %s at line %d.\n",#expr,__FILE__,__LINE__)) 00039 #endif 00040 00041 #endif
Copyright 2003 P&P Software GmbH - All Rights Reserved