]> Creatis software - gdcm.git/blobdiff - src/gdcmVR.cxx
* src/gdcmHeaderEntry.[h|cxx] : gdcmElValue -> gdcmHeaderEntry
[gdcm.git] / src / gdcmVR.cxx
index 3d2ea9c2deb7fd3a4002446e611f27c286f42805..de4f1e1c2d2d46ba33cf484bf1e6c3dd419c195c 100644 (file)
@@ -1,6 +1,6 @@
 // gdcmVR.cxx
 #include <fstream>
-
+//-----------------------------------------------------------------------------
 #include "gdcmVR.h"
 #include "gdcmUtil.h"
 
@@ -9,6 +9,8 @@
 #endif
 #define DICT_VR "dicomVR.dic"
 
+//-----------------------------------------------------------------------------
+// Constructor / Destructor
 gdcmVR::gdcmVR(void) {
    std::string filename=gdcmDictSet::BuildDictPath() + std::string(DICT_VR);
    std::ifstream from(filename.c_str());
@@ -41,6 +43,19 @@ gdcmVR::~gdcmVR() {
    vr.clear();
 }
 
+//-----------------------------------------------------------------------------
+// Print
+
+//-----------------------------------------------------------------------------
+// Public
 int gdcmVR::Count(VRKey key) {
    return vr.count(key);
 }
+
+//-----------------------------------------------------------------------------
+// Protected
+
+//-----------------------------------------------------------------------------
+// Private
+
+//-----------------------------------------------------------------------------