]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
Sorry, didn't realize named had changed .c -> 12.c
[gdcm.git] / src / gdcmElValue.cxx
index 3a353cf8b1d197f0367d8bbdc93fbe5bb45d2b29..61b216ba75a53a8eec25c24828c685209f631028 100644 (file)
@@ -1,6 +1,15 @@
-#include "gdcmlib.h"
+// gdcmElValue.cxx
 
-void   ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); }
-string ElValue::GetVR(void)   { return entry->GetVR(); }
+#include "gdcmElValue.h"
 
-ElValue::ElValue(gdcmDictEntry* in) { entry = in; }
+
+/**
+ * \ingroup gdcmElValue
+ * \brief   Constructor from a given gdcmDictEntry
+ * @param   in Pointer to existing dictionary entry
+ */
+
+gdcmElValue::gdcmElValue(gdcmDictEntry* in) {
+       ImplicitVr = false;
+       entry = in;
+}