X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.h;h=75d700ce90af33f52501e949ed2896c9c7885c7e;hb=d1c68c2c2ae9fadf927053150f7fbc625a7c7366;hp=edb114fd5f05420043d3401c7ee4f93e8aaae5fa;hpb=4491b768d9529a24608e44d6ef77dc235d37dbb7;p=gdcm.git diff --git a/src/gdcmDebug.h b/src/gdcmDebug.h index edb114fd..75d700ce 100644 --- a/src/gdcmDebug.h +++ b/src/gdcmDebug.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.h,v $ Language: C++ - Date: $Date: 2005/01/31 12:19:33 $ - Version: $Revision: 1.26 $ + Date: $Date: 2005/02/01 10:29:54 $ + Version: $Revision: 1.27 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -50,17 +50,17 @@ public: /// This is a global flag that controls whether any debug, warning /// messages are displayed. - static bool GetDebugFlag (); static void SetDebugFlag (bool flag); - static void SetDebugOn () { SetDebugFlag(true); }; - static void SetDebugOff () { SetDebugFlag(false); }; + static bool GetDebugFlag (); + static void DebugOn () { SetDebugFlag(true); }; + static void DebugOff () { SetDebugFlag(false); }; /// This is a global flag that controls if debug are redirected /// to a file or not - static bool GetDebugToFile (); static void SetDebugToFile (bool flag); - static void SetDebugToFileOn () { SetDebugToFile(true); }; - static void SetDebugToFileOff () { SetDebugToFile(false); }; + static bool GetDebugToFile (); + static void DebugToFileOn () { SetDebugToFile(true); }; + static void DebugToFileOff () { SetDebugToFile(false); }; /// Set the filename the debug stream should be redirect to /// Settting a filename also set DebugToFile to true