X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.h;h=7cd142bc14362332feca2f7f7048d2c01f7922a7;hb=f82255fd505deda217e3da9067c26703ba345567;hp=6380c07c82328e2834cd6e87cf2ffd84e3af8472;hpb=29bdd1e88a28b6267618f633f304e1154537ce7b;p=gdcm.git diff --git a/src/gdcmTS.h b/src/gdcmTS.h index 6380c07c..7cd142bc 100644 --- a/src/gdcmTS.h +++ b/src/gdcmTS.h @@ -1,5 +1,5 @@ // gdcmTS.h - +//----------------------------------------------------------------------------- #ifndef GDCMTS_H #define GDCMTS_H @@ -7,21 +7,26 @@ #include #include +//----------------------------------------------------------------------------- typedef std::string TSKey; typedef std::string TSAtr; typedef std::map TSHT; // Transfert Syntax Hash Table -/// Container for dicom Transfert Syntax Hash Table -/// \note This is a singleton +//----------------------------------------------------------------------------- +/* + * Container for dicom Transfert Syntax Hash Table + * \note This is a singleton + */ class GDCM_EXPORT gdcmTS { -private: - TSHT ts; - public: gdcmTS(void); ~gdcmTS(); int Count(TSKey key); std::string GetValue(TSKey key); + +private: + TSHT ts; }; +//----------------------------------------------------------------------------- #endif