X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=82663675463063eb3cf0af556e130a25505ec369;hb=f82255fd505deda217e3da9067c26703ba345567;hp=9301e24a2b59b9d24f523cb39cf3681e6c6489fe;hpb=29bdd1e88a28b6267618f633f304e1154537ce7b;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index 9301e24a..82663675 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -1,5 +1,5 @@ // gdcmVR.h - +//----------------------------------------------------------------------------- #ifndef GDCMVR_H #define GDCMVR_H @@ -7,19 +7,25 @@ #include #include +//----------------------------------------------------------------------------- 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