]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
- garbage Siemens 'Leonardo' images dealt with
[gdcm.git] / src / gdcmElValue.cxx
index 6ed2b007e743d6c426597fa020b2dfc09f4738f4..61b216ba75a53a8eec25c24828c685209f631028 100644 (file)
@@ -1,7 +1,15 @@
-#include "gdcmlib.h"
+// gdcmElValue.cxx
 
-void ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); }
+#include "gdcmElValue.h"
 
-void ElValue::SetLgrLue(guint32 lgr) { LgrLueElem = lgr; }
 
-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;
+}