// gdcmTS.h #ifndef GDCMTS_H #define GDCMTS_H #include #include #include "gdcmCommon.h" 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 class GDCM_EXPORT gdcmTS { private: TSHT ts; public: gdcmTS(void); ~gdcmTS(); int Count(TSKey key); string GetValue(TSKey key); }; #endif