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