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