2 //-----------------------------------------------------------------------------
10 * \brief gdcmDebug is an object for debugging in program.
11 * It has 2 debugging modes :
12 * - error : for bad library use
13 * - debug : for debugging messages
15 * A debugging message has a level of priority and is
16 * Shown only when the debug level is higher than the
21 gdcmDebug(int level = GDCM_DEBUG);
23 void SetDebug (int level);
24 void Verbose(int, const char*, const char* ="");
25 void Error(bool, const char*, const char* ="");
26 void Error(const char*, const char* ="", const char* ="");
28 void Assert(int, bool, const char*, const char*);
32 /// warning message level to be displayed