X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=d5ba7785855df944b163b2cae818a5cb3b34701a;hb=709489e13fe8c2b2a3f0cff5b5c948fd516bf855;hp=8d18dfddfc5d35d934f0e167b8eafb36ff3eeeeb;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index 8d18dfdd..d5ba7785 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmVR.h,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:48 $ - Version: $Revision: 1.9 $ + Date: $Date: 2004/07/02 13:55:28 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -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; }; //-----------------------------------------------------------------------------