X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=152aaebb91b9b4f7d09fbd995b4b02d9ab318513;hb=1867926fc5b21e95022b419e33ae7da1334ee394;hp=b648b26bbb9e018bb2612108fe7fae8726147a1d;hpb=d3e997d981d84fece924c52c8b513bccc6cd371a;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index b648b26b..152aaebb 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -1,22 +1,31 @@ -// gdcmTS.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmTS.cxx,v $ + Language: C++ + Date: $Date: 2004/09/27 08:39:07 $ + Version: $Revision: 1.24 $ + + 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. + +=========================================================================*/ + #include +#include +#include #include "gdcmTS.h" +#include "gdcmDebug.h" #include "gdcmUtil.h" +#include "gdcmDictSet.h" -#ifndef PUB_DICT_PATH -# define PUB_DICT_PATH "../Dicts/" -#endif -#define DICT_TS "dicomTS.dic" -#include -#ifdef GDCM_NO_ANSI_STRING_STREAM -# include -# define ostringstream ostrstream -# else -# include -#endif //----------------------------------------------------------------------------- // Constructor / Destructor @@ -26,18 +35,14 @@ gdcmTS::gdcmTS(void) std::ifstream from(filename.c_str()); dbg.Error(!from, "gdcmTS::gdcmTS: can't open dictionary",filename.c_str()); - char buff[1024]; std::string key; std::string name; while (!from.eof()) { - eatwhite(from); - from.getline(buff, 1024, ' '); - key = buff; + from >> key; eatwhite(from); - from.getline(buff, 1024, '\n'); - name = buff; + std::getline(from, name); /// MEMORY LEAK if(key!="") { @@ -80,7 +85,7 @@ int gdcmTS::Count(TSKey key) std::string gdcmTS::GetValue(TSKey key) { if (ts.count(key) == 0) - return (GDCM_UNFOUND); + return GDCM_UNFOUND; return ts[key]; }