]> Creatis software - gdcm.git/blob - src/gdcmVR.h
src/*.cxx removed pragma thingies to src/gdcmCommon.h
[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 /// 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