]> Creatis software - gdcm.git/blobdiff - src/gdcmDebug.h
ENH: Created a new local dir libijg (from libijg8), then went on the server copy...
[gdcm.git] / src / gdcmDebug.h
index 886e2ec4e5dca24f8f3c4c20749ff4a0c283a6b2..67d49f9edf9c002fac2e2be3d32dc8a16add3709 100644 (file)
@@ -1,9 +1,27 @@
-// gdcmDebug.h
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDebug.h,v $
+  Language:  C++
+  Date:      $Date: 2004/09/27 08:39:05 $
+  Version:   $Revision: 1.7 $
+                                                                                
+  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
+  l'Image). All rights reserved. See Doc/License.txt or
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
+
 #ifndef GDCMDEBUG_H
 #define GDCMDEBUG_H
 
-#define GDCM_DEBUG -1
+#include "gdcmCommon.h"
+
+//-----------------------------------------------------------------------------
 
 /**
  * \ingroup gdcmDebug
  * Shown only when the debug level is higher than the 
  * message level.
  */
-class gdcmDebug {
+class GDCM_EXPORT gdcmDebug
+{
 public:
-   gdcmDebug(int level = GDCM_DEBUG);
+   gdcmDebug(int level = -1);
 
    void SetDebug (int level);
-   void Verbose(int, const char*, const char* ="");
-   void Error(bool, const char*,  const char* ="");
-   void Error(const char*, const char* ="", const char* ="");
+   void Verbose(int level, const char* msg1, const char* msg2 = "") ;
+   void Error  (bool test, const char* msg1, const char* msg2 = "");
+   void Error  (const char* msg1, const char* msg2 = "", const char* msg3 = "");
+
+   void Assert(int level, bool test, const char * msg1, const char * msg2);
+   void Exit(int a);
 
-   void Assert(int, bool, const char*, const char*);
-   void Exit(int);
+   static gdcmDebug &GetReference();
 
 private:
 /// warning message level to be displayed
    int DebugLevel;
+
 };
 
-extern gdcmDebug dbg;
+/// Instance of debugging utility.
+static gdcmDebug dbg;
 
 #endif