]> Creatis software - gdcm.git/blobdiff - src/gdcmDebug.h
BUG: Previous code did not compile with all (=busted) compilers
[gdcm.git] / src / gdcmDebug.h
index 3489a87321630b9b5c6b4f1e15fc6d7e9a683644..83939678566cd0fec2582c939718a46140188b2c 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDebug.h,v $
   Language:  C++
-  Date:      $Date: 2004/09/24 03:34:27 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2004/10/12 04:35:44 $
+  Version:   $Revision: 1.8 $
                                                                                 
   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.htm for details.
+  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
 #define GDCMDEBUG_H
 
 #include "gdcmCommon.h"
+namespace gdcm 
+{
 
 //-----------------------------------------------------------------------------
 
 /**
- * \ingroup gdcmDebug
- * \brief gdcmDebug is an object for debugging in program.
+ * \ingroup Debug
+ * \brief Debug is an object for debugging in program.
  * It has 2 debugging modes :
  *  - error : for bad library use
  *  - debug : for debugging messages
  * Shown only when the debug level is higher than the 
  * message level.
  */
-class GDCM_EXPORT gdcmDebug
+class GDCM_EXPORT Debug
 {
 public:
-   gdcmDebug(int level = -1);
+   Debug(int level = -1);
 
    void SetDebug (int level);
    void Verbose(int level, const char* msg1, const char* msg2 = "") ;
@@ -47,7 +49,7 @@ public:
    void Assert(int level, bool test, const char * msg1, const char * msg2);
    void Exit(int a);
 
-   static gdcmDebug &GetReference();
+   static Debug &GetReference();
 
 private:
 /// warning message level to be displayed
@@ -55,7 +57,8 @@ private:
 
 };
 
+} // end namespace gdcm
 /// Instance of debugging utility.
-static gdcmDebug dbg;
+static gdcm::Debug dbg;
 
 #endif