X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=1b4af5611dcc34ab95d61a7eb731bdbc991a54ba;hb=4d807602e1d453d370c91813aa250ce489c57f6a;hp=db5869a0301f5ac335ab82652bae218a2c38a437;hpb=0457e1e8fc68df6d9e2d1a0fcd0053ecee3c5ad7;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index db5869a0..1b4af561 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -1,25 +1,62 @@ -// gdcmVR.h +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmVR.h,v $ + Language: C++ + Date: $Date: 2005/01/11 15:15:38 $ + Version: $Revision: 1.18 $ + + 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 #include -#include "gdcmCommon.h" +#include + +namespace gdcm +{ -typedef string VRKey; -typedef string VRAtr; -typedef map VRHT; // Value Representation Hash Table +//----------------------------------------------------------------------------- +typedef std::string VRKey; +typedef std::string VRAtr; +/// Value Representation Hash Table +typedef std::map VRHT; + +//----------------------------------------------------------------------------- +/** + * \brief Container for dicom Value Representation Hash Table + * \note This is a singleton + */ +class GDCM_EXPORT VR +{ +public: + VR(void); + ~VR(); + + void Print(std::ostream &os = std::cout); + + int Count(VRKey const &key); + bool IsVROfBinaryRepresentable(VRKey const &tested); + bool IsVROfStringRepresentable(VRKey const &tested); + bool IsVROfSequence(VRKey const &tested); + + bool IsValidVR(VRKey const &key); -/// Container for dicom Value Representation Hash Table -/// \note This is a singleton -class GDCM_EXPORT gdcmVR { private: VRHT vr; -public: - gdcmVR(void); - ~gdcmVR(); - int Count(VRKey key); }; +} // end namespace gdcm +//----------------------------------------------------------------------------- #endif