]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
new Print method for gdcmHeaderEntry
[gdcm.git] / src / gdcmVR.h
index f29321936257a943ab0c84f13547162eab326dbd..82663675463063eb3cf0af556e130a25505ec369 100644 (file)
@@ -1,5 +1,5 @@
 // gdcmVR.h
-
+//-----------------------------------------------------------------------------
 #ifndef GDCMVR_H
 #define GDCMVR_H
 
@@ -7,21 +7,25 @@
 #include <map>
 #include <string>
 
+//-----------------------------------------------------------------------------
 typedef std::string VRKey;
 typedef std::string VRAtr;
 typedef std::map<VRKey, VRAtr> 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);
+
+private:
+   VRHT vr;
 };
 
+//-----------------------------------------------------------------------------
 #endif