X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDict.cxx;h=1985e4e3eeb3e0bb7d69edbb2129a2792a26258e;hb=45333140369db54d6e83087cc58be4b264b58b14;hp=bec8f774c0d195047bfc92e21421ec1fbea567a1;hpb=079305bacab464b4e62e19ca829c67ce255f8f1d;p=gdcm.git diff --git a/src/gdcmDict.cxx b/src/gdcmDict.cxx index bec8f774..1985e4e3 100644 --- a/src/gdcmDict.cxx +++ b/src/gdcmDict.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDict.cxx,v $ Language: C++ - Date: $Date: 2005/01/07 15:58:19 $ - Version: $Revision: 1.57 $ + Date: $Date: 2005/01/07 16:26:12 $ + Version: $Revision: 1.58 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -44,7 +44,7 @@ Dict::Dict(std::string const &filename) std::ifstream from( filename.c_str() ); if( !from ) { - dbg.Verbose(2,"Dict::Dict: can't open dictionary", filename.c_str()); + Debug::Verbose(2,"Dict::Dict: can't open dictionary", filename.c_str()); // Using default embeded one: FillDefaultDataDict( this ); } @@ -128,7 +128,7 @@ bool Dict::AddNewEntry(DictEntry const &newEntry) if(KeyHt.count(key) == 1) { - dbg.Verbose(1, "Dict::AddNewEntry already present", key.c_str()); + Debug::Verbose(1, "Dict::AddNewEntry already present", key.c_str()); return false; } else @@ -172,7 +172,7 @@ bool Dict::RemoveEntry (TagKey const &key) } else { - dbg.Verbose(1, "Dict::RemoveEntry unfound entry", key.c_str()); + Debug::Verbose(1, "Dict::RemoveEntry unfound entry", key.c_str()); return false; } }