X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.h;h=83939678566cd0fec2582c939718a46140188b2c;hb=eae9a01c2edd9f615a78dc64a8e7731d09e815a1;hp=886e2ec4e5dca24f8f3c4c20749ff4a0c283a6b2;hpb=0e82725d64f17545e782c18039ced7ea898f8cad;p=gdcm.git diff --git a/src/gdcmDebug.h b/src/gdcmDebug.h index 886e2ec4..83939678 100644 --- a/src/gdcmDebug.h +++ b/src/gdcmDebug.h @@ -1,13 +1,33 @@ -// gdcmDebug.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDebug.h,v $ + Language: C++ + 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.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" +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 @@ -16,23 +36,29 @@ * Shown only when the debug level is higher than the * message level. */ -class gdcmDebug { +class GDCM_EXPORT Debug +{ public: - gdcmDebug(int level = GDCM_DEBUG); + Debug(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 Debug &GetReference(); private: /// warning message level to be displayed int DebugLevel; + }; -extern gdcmDebug dbg; +} // end namespace gdcm +/// Instance of debugging utility. +static gdcm::Debug dbg; #endif