// gdcmVR.h //----------------------------------------------------------------------------- #ifndef GDCMVR_H #define GDCMVR_H #include "gdcmCommon.h" #include #include //----------------------------------------------------------------------------- typedef std::string VRKey; typedef std::string VRAtr; typedef std::map VRHT; // Value Representation Hash Table //----------------------------------------------------------------------------- /* * Container for dicom Value Representation Hash Table * \note This is a singleton */ class GDCM_EXPORT gdcmVR { public: gdcmVR(void); ~gdcmVR(); int Count(VRKey key); private: VRHT vr; }; //----------------------------------------------------------------------------- #endif