]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
2003-11-03 Jean-Pierre Roux
[gdcm.git] / src / gdcmElValue.cxx
index 5194a799fb9c13d0576fe9c906d32dc0bdd71db7..61b216ba75a53a8eec25c24828c685209f631028 100644 (file)
@@ -1,6 +1,15 @@
-#include "gdcm.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;
+}