X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.h;h=83939678566cd0fec2582c939718a46140188b2c;hb=c77dd6febbf12b5b0d5401008ced0c575b61a5f7;hp=ae3e013fd0e396714635b4b1ac3c2b16cc144aff;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDebug.h b/src/gdcmDebug.h index ae3e013f..83939678 100644 --- a/src/gdcmDebug.h +++ b/src/gdcmDebug.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDebug.h,v $ Language: C++ - Date: $Date: 2004/08/01 02:39:09 $ - Version: $Revision: 1.5 $ + 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 @@ -20,15 +20,14 @@ #define GDCMDEBUG_H #include "gdcmCommon.h" - -//----------------------------------------------------------------------------- -#define dbg gdcmDebug::GetReference() +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 @@ -37,10 +36,10 @@ * 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 = "") ; @@ -50,14 +49,16 @@ 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 int DebugLevel; -/// Instance of debugging utility. - static gdcmDebug debug; }; +} // end namespace gdcm +/// Instance of debugging utility. +static gdcm::Debug dbg; + #endif