X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=c1f82fcde1623e1766255284bfb4234fa1e215e6;hb=c13d10dfc093f4e1c112cfe1f5742e76d34ba3b8;hp=8d18dfddfc5d35d934f0e167b8eafb36ff3eeeeb;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index 8d18dfdd..c1f82fcd 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -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 @@ -25,9 +25,10 @@ #include //----------------------------------------------------------------------------- -typedef std::string VRKey; -typedef std::string VRAtr; -typedef std::map VRHT; // Value Representation Hash Table +typedef std::string gdcmVRKey; +typedef std::string gdcmVRAtr; +/// Value Representation Hash Table +typedef std::map 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; }; //-----------------------------------------------------------------------------