X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=0f41bb5c34c044727d834649e42cc579bbd7bf19;hb=709489e13fe8c2b2a3f0cff5b5c948fd516bf855;hp=f3e89ab9b5e166218f10c16332a084eacb0f8212;hpb=06c1c583239fdf5196260e6ef83a78669c1bd17f;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index f3e89ab9..0f41bb5c 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -1,57 +1,91 @@ -// gdcmTS.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmTS.cxx,v $ + Language: C++ + Date: $Date: 2004/07/19 15:16:19 $ + Version: $Revision: 1.23 $ + + 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.htm 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" //----------------------------------------------------------------------------- // Constructor / Destructor -gdcmTS::gdcmTS(void) { +gdcmTS::gdcmTS(void) +{ std::string filename=gdcmDictSet::BuildDictPath() + std::string(DICT_TS); 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()) { + from >> key; + eatwhite(from); - from.getline(buff, 1024, ' '); - key = buff; - eatwhite(from); - from.getline(buff, 1024, '\n'); - name = buff; + std::getline(from, name); /// MEMORY LEAK - if(key!="") { + if(key!="") + { ts[key]=name; } } from.close(); } -gdcmTS::~gdcmTS() { +gdcmTS::~gdcmTS() +{ ts.clear(); } //----------------------------------------------------------------------------- // Print +/** + * \ingroup gdcmVR + * \brief Print all + * @param os The output stream to be written to. + */ +void gdcmTS::Print(std::ostream &os) +{ + std::ostringstream s; + + for (TSHT::iterator it = ts.begin(); it != ts.end(); ++it) + { + s << "TS : "<first<<" = "<second<