X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=41f6f18cbb5a5301ecdc126b7ba39eefe9ce2f6b;hb=02163588f1fa2bb0af4b45455b6f9d08ec64f7b3;hp=82c4ee96a91e1fbb45b22ed59bc42e5092fcef4c;hpb=e0dd731930fb63792def3924ddc137135e09dabe;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index 82c4ee96..41f6f18c 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2005/01/13 22:30:11 $ - Version: $Revision: 1.17 $ + Date: $Date: 2005/01/27 11:55:57 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -23,9 +23,21 @@ namespace gdcm { /// warning message level to be displayed -static bool DebugFlag = false; +static bool DebugFlag = false; static bool DebugToFile = false; static std::ofstream DebugFile; + + +Debug::Debug() +{ + +} + +Debug::~Debug() +{ + if ( DebugFile.is_open() ) + DebugFile.close(); +} //----------------------------------------------------------------------------- /** * \brief Accessor @@ -69,14 +81,16 @@ bool Debug::GetDebugToFile () * Absolutely nothing is check. You have to pass in * a correct filename */ -void Debug::SetDebugFilename (std::string const& filename) +void Debug::SetDebugFilename (std::string const &filename) { DebugToFile = true; // Just in case ... - DebugFlag = true; // Just in case ... + DebugFlag = true; // Just in case ... + if( DebugFile.is_open() ) + DebugFile.close(); DebugFile.open( filename.c_str() ); } -std::ofstream & Debug::GetDebugFile () +std::ofstream &Debug::GetDebugFile () { return DebugFile; }