X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.h;h=82663675463063eb3cf0af556e130a25505ec369;hb=a394111e93ec16aade3e5a074e6574f50559b7d0;hp=f29321936257a943ab0c84f13547162eab326dbd;hpb=15d7b1b38f5ddb59d395e0e4e3f9b0250eb90eec;p=gdcm.git diff --git a/src/gdcmVR.h b/src/gdcmVR.h index f2932193..82663675 100644 --- a/src/gdcmVR.h +++ b/src/gdcmVR.h @@ -1,5 +1,5 @@ // gdcmVR.h - +//----------------------------------------------------------------------------- #ifndef GDCMVR_H #define GDCMVR_H @@ -7,21 +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 */ class GDCM_EXPORT gdcmVR { -private: - VRHT vr; public: gdcmVR(void); ~gdcmVR(); int Count(VRKey key); + +private: + VRHT vr; }; +//----------------------------------------------------------------------------- #endif