]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / src / gdcmVR.h
index db5869a0301f5ac335ab82652bae218a2c38a437..6faad96a7945a91aa29bfda8294f8f4c1f6c6a61 100644 (file)
@@ -1,25 +1,57 @@
-// gdcmVR.h
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmVR.h,v $
+  Language:  C++
+  Date:      $Date: 2004/10/12 04:35:48 $
+  Version:   $Revision: 1.12 $
+                                                                                
+  Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
+  l'Image). All rights reserved. See Doc/License.txt or
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
 
 #ifndef GDCMVR_H
 #define GDCMVR_H
 
+#include "gdcmCommon.h"
 #include <map>
 #include <string>
-#include "gdcmCommon.h"
+#include <iostream>
+namespace gdcm 
+{
 
-typedef string VRKey;
-typedef string VRAtr;
-typedef map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
+//-----------------------------------------------------------------------------
+typedef std::string VRKey;
+typedef std::string VRAtr;
+/// Value Representation Hash Table
+typedef std::map<VRKey, VRAtr> VRHT;
 
-/// Container for dicom Value Representation Hash Table
-/// \note   This is a singleton
-class GDCM_EXPORT gdcmVR {
-private:
-   VRHT vr;
+//-----------------------------------------------------------------------------
+/*
+ * Container for dicom Value Representation Hash Table
+ * \note   This is a singleton
+ */
+class GDCM_EXPORT VR 
+{
 public:
-       gdcmVR(void);
-   ~gdcmVR();
+   VR(void);
+   ~VR();
+
+   void Print(std::ostream &os = std::cout);
    int Count(VRKey key);
+   bool IsVROfGdcmBinaryRepresentable(VRKey);
+   bool IsVROfGdcmStringRepresentable(VRKey);
+
+private:
+   VRHT vr;
 };
+} // end namespace gdcm
 
+//-----------------------------------------------------------------------------
 #endif