]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.h
ENH: Remove unecesseray file, were not in CMakeLists.txt. Also ease comparison with...
[gdcm.git] / src / gdcmVR.h
index 8d18dfddfc5d35d934f0e167b8eafb36ff3eeeeb..c1f82fcde1623e1766255284bfb4234fa1e215e6 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmVR.h,v $
   Language:  C++
-  Date:      $Date: 2004/06/20 18:08:48 $
-  Version:   $Revision: 1.9 $
+  Date:      $Date: 2004/09/27 08:39:08 $
+  Version:   $Revision: 1.11 $
                                                                                 
   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.htm for details.
+  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
 #include <iostream>
 
 //-----------------------------------------------------------------------------
-typedef std::string VRKey;
-typedef std::string VRAtr;
-typedef std::map<VRKey, VRAtr> VRHT;    // Value Representation Hash Table
+typedef std::string gdcmVRKey;
+typedef std::string gdcmVRAtr;
+/// Value Representation Hash Table
+typedef std::map<gdcmVRKey, gdcmVRAtr> gdcmVRHT;
 
 //-----------------------------------------------------------------------------
 /*
@@ -41,12 +42,12 @@ public:
    ~gdcmVR();
 
    void Print(std::ostream &os = std::cout);
-   int Count(VRKey key);
-   bool IsVROfGdcmBinaryRepresentable(VRKey);
-   bool IsVROfGdcmStringRepresentable(VRKey);
+   int Count(gdcmVRKey key);
+   bool IsVROfGdcmBinaryRepresentable(gdcmVRKey);
+   bool IsVROfGdcmStringRepresentable(gdcmVRKey);
 
 private:
-   VRHT vr;
+   gdcmVRHT vr;
 };
 
 //-----------------------------------------------------------------------------