X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=26c672df9f9107b02e145d1c724742415cd56218;hb=faf9f777a09c115e44b29d40a0c6ea2d122fc1e7;hp=15645c5f4b8b5bde2e61db8ca065c5999b83fe2f;hpb=79a0d5df2d3f7ed7a295d76c3ae1048358bc019a;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index 15645c5f..26c672df 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmTS.cxx,v $ Language: C++ - Date: $Date: 2004/10/27 01:32:15 $ - Version: $Revision: 1.27 $ + Date: $Date: 2004/11/03 18:08:56 $ + Version: $Revision: 1.28 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,29 +27,36 @@ namespace gdcm { +void FillDefaultTSDict(TSHT & ts); //----------------------------------------------------------------------------- // Constructor / Destructor TS::TS() { std::string filename = DictSet::BuildDictPath() + DICT_TS; std::ifstream from(filename.c_str()); - dbg.Error(!from, "TS::TS: can't open dictionary", filename.c_str()); - - TSKey key; - TSAtr name; - - while (!from.eof()) + if( !from ) { - from >> key; - from >> std::ws; - std::getline(from, name); - - if(key != "") + dbg.Verbose(2, "TS::TS: can't open dictionary", filename.c_str()); + FillDefaultTSDict( TsMap ); + } + else + { + TSKey key; + TSAtr name; + + while (!from.eof()) { - TsMap[key] = name; + from >> key; + from >> std::ws; + std::getline(from, name); + + if(key != "") + { + TsMap[key] = name; + } } + from.close(); } - from.close(); } //-----------------------------------------------------------------------------