X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=82663675463063eb3cf0af556e130a25505ec369;hb=a394111e93ec16aade3e5a074e6574f50559b7d0;hp=db5869a0301f5ac335ab82652bae218a2c38a437;hpb=0457e1e8fc68df6d9e2d1a0fcd0053ecee3c5ad7;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index db5869a0..82663675 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -1,25 +1,31 @@ // gdcmVR.h - +//----------------------------------------------------------------------------- #ifndef GDCMVR_H #define GDCMVR_H +#include "gdcmCommon.h" #include #include -#include "gdcmCommon.h" -typedef string VRKey; -typedef string VRAtr; -typedef map VRHT; // Value Representation Hash Table +//----------------------------------------------------------------------------- +typedef std::string VRKey; +typedef std::string VRAtr; +typedef std::map VRHT; // Value Representation Hash Table -/// Container for dicom Value Representation Hash Table -/// \note This is a singleton +//----------------------------------------------------------------------------- +/* + * 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); + +private: + VRHT vr; }; +//----------------------------------------------------------------------------- #endif