]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
*** empty log message ***
[gdcm.git] / src / gdcmVR.h
index f29321936257a943ab0c84f13547162eab326dbd..11ad35969fe7741a0b50f2a65ff941bde8940511 100644 (file)
@@ -1,27 +1,36 @@
 // gdcmVR.h
-
+//-----------------------------------------------------------------------------
 #ifndef GDCMVR_H
 #define GDCMVR_H
 
 #include "gdcmCommon.h"
 #include <map>
 #include <string>
+#include <iostream>
 
+//-----------------------------------------------------------------------------
 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;
+class GDCM_EXPORT gdcmVR 
+{
 public:
        gdcmVR(void);
    ~gdcmVR();
+
+   void Print(std::ostream &os = std::cout);
+
    int Count(VRKey key);
+
+private:
+   VRHT vr;
 };
 
+//-----------------------------------------------------------------------------
 #endif