]> Creatis software - gdcm.git/blob - src/gdcmVR.h
* More memmory link related corrections and documentation fixes.
[gdcm.git] / src / gdcmVR.h
1 // gdcmVR.h
2
3 #ifndef GDCMVR_H
4 #define GDCMVR_H
5
6 #include <map>
7 #include <string>
8 #include "gdcmCommon.h"
9
10 typedef string VRKey;
11 typedef string VRAtr;
12 typedef map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
13
14 /// Container for dicom Value Representation Hash Table
15 /// \note   This is a singleton
16 class GDCM_EXPORT gdcmVR {
17 private:
18    VRHT vr;
19 public:
20         gdcmVR(void);
21    ~gdcmVR();
22    int Count(VRKey key);
23 };
24
25 #endif