1 /*=========================================================================
4 Module: $RCSfile: gdcmDebug.h,v $
6 Date: $Date: 2004/09/27 08:39:05 $
7 Version: $Revision: 1.7 $
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"
24 //-----------------------------------------------------------------------------
28 * \brief gdcmDebug is an object for debugging in program.
29 * It has 2 debugging modes :
30 * - error : for bad library use
31 * - debug : for debugging messages
33 * A debugging message has a level of priority and is
34 * Shown only when the debug level is higher than the
37 class GDCM_EXPORT gdcmDebug
40 gdcmDebug(int level = -1);
42 void SetDebug (int level);
43 void Verbose(int level, const char* msg1, const char* msg2 = "") ;
44 void Error (bool test, const char* msg1, const char* msg2 = "");
45 void Error (const char* msg1, const char* msg2 = "", const char* msg3 = "");
47 void Assert(int level, bool test, const char * msg1, const char * msg2);
50 static gdcmDebug &GetReference();
53 /// warning message level to be displayed
58 /// Instance of debugging utility.