]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
* To remove warnings
[gdcm.git] / src / gdcmVR.h
index db5869a0301f5ac335ab82652bae218a2c38a437..82663675463063eb3cf0af556e130a25505ec369 100644 (file)
@@ -1,25 +1,31 @@
 // gdcmVR.h
-
+//-----------------------------------------------------------------------------
 #ifndef GDCMVR_H
 #define GDCMVR_H
 
+#include "gdcmCommon.h"
 #include <map>
 #include <string>
-#include "gdcmCommon.h"
 
-typedef string VRKey;
-typedef string VRAtr;
-typedef map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
+//-----------------------------------------------------------------------------
+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
+//-----------------------------------------------------------------------------
+/*
+ * 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