X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=82663675463063eb3cf0af556e130a25505ec369;hb=a394111e93ec16aade3e5a074e6574f50559b7d0;hp=68d7fee3940e5c6fb979329bfba7011fb530db3a;hpb=05abd393cf82392c894dd1d852e2273b0648671d;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index 68d7fee3..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 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