X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=e6543d8cd4a6f9c49e778380de2a58d356983760;hb=61e1a3e0ce5480990a0d0b844cf0e86d1775306d;hp=29ab1be0a9c6d52731fd5d3e7ad488c765ccc785;hpb=ecc068684313c5f9f1050de920afc7e413041220;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index 29ab1be0..e6543d8c 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -1,16 +1,20 @@ // gdcmTS.cxx - +//----------------------------------------------------------------------------- #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" -gdcmTS::gdcmTS(void) { +//----------------------------------------------------------------------------- +// Constructor / Destructor +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()); @@ -20,14 +24,10 @@ gdcmTS::gdcmTS(void) { std::string name; while (!from.eof()) { - eatwhite(from); - from.getline(buff, 1024, ' '); - key = buff; - eatwhite(from); - from.getline(buff, 1024, '\n'); - name = buff; - - if(key!="") + from >> key; + getline(from, name); /// MEMORY LEAK + + if(key!="") { ts[key]=name; } @@ -35,16 +35,47 @@ gdcmTS::gdcmTS(void) { from.close(); } -gdcmTS::~gdcmTS() { +gdcmTS::~gdcmTS() +{ ts.clear(); } -int gdcmTS::Count(TSKey key) { +//----------------------------------------------------------------------------- +// 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<