1 /*=========================================================================
4 Module: $RCSfile: gdcmDebug.h,v $
6 Date: $Date: 2004/12/03 20:16:57 $
7 Version: $Revision: 1.9 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
22 #include "gdcmCommon.h"
26 //-----------------------------------------------------------------------------
30 * \brief Debug is an object for debugging in program.
31 * It has 2 debugging modes :
32 * - error : for bad library use
33 * - debug : for debugging messages
35 * A debugging message has a level of priority and is
36 * Shown only when the debug level is higher than the
39 class GDCM_EXPORT Debug
42 Debug(int level = -1);
44 void SetDebug (int level);
45 void Verbose(int level, const char* msg1, const char* msg2 = "") ;
46 void Error (bool test, const char* msg1, const char* msg2 = "");
47 void Error (const char* msg1, const char* msg2 = "", const char* msg3 = "");
49 void Assert(int level, bool test, const char * msg1, const char * msg2);
52 static Debug &GetReference();
55 /// warning message level to be displayed
60 } // end namespace gdcm
61 /// Instance of debugging utility.
62 static gdcm::Debug dbg;