]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
*** empty log message ***
[gdcm.git] / src / gdcmVR.h
index 82663675463063eb3cf0af556e130a25505ec369..11ad35969fe7741a0b50f2a65ff941bde8940511 100644 (file)
@@ -6,6 +6,7 @@
 #include "gdcmCommon.h"
 #include <map>
 #include <string>
+#include <iostream>
 
 //-----------------------------------------------------------------------------
 typedef std::string VRKey;
@@ -17,10 +18,14 @@ 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 {
+class GDCM_EXPORT gdcmVR 
+{
 public:
        gdcmVR(void);
    ~gdcmVR();
+
+   void Print(std::ostream &os = std::cout);
+
    int Count(VRKey key);
 
 private: