]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
remove problem of CVS. please use cvs -C to resolve conflicts
[gdcm.git] / src / gdcmElValue.cxx
index 3a353cf8b1d197f0367d8bbdc93fbe5bb45d2b29..64e3e247ef46f21066cf2331edf5f9a70870bc6c 100644 (file)
@@ -1,6 +1,33 @@
-#include "gdcmlib.h"
+// gdcmElValue.cxx
+//-----------------------------------------------------------------------------
+// TODO
+// A 'gdcmElValue' is actually a 'Dicom Element'.
+// WHY such a confusing name???
+//
+#include "gdcmElValue.h"
 
-void   ElValue::SetVR(string ValRep) { entry->SetVR(ValRep); }
-string ElValue::GetVR(void)   { return entry->GetVR(); }
+//-----------------------------------------------------------------------------
+// Constructor / Destructor
+/**
+ * \ingroup gdcmElValue
+ * \brief   Constructor from a given gdcmDictEntry
+ * @param   in Pointer to existing dictionary entry
+ */
+gdcmElValue::gdcmElValue(gdcmDictEntry* in) {
+       ImplicitVr = false;
+       entry = in;
+}
 
-ElValue::ElValue(gdcmDictEntry* in) { entry = in; }
+//-----------------------------------------------------------------------------
+// Print
+
+//-----------------------------------------------------------------------------
+// Public
+
+//-----------------------------------------------------------------------------
+// Protected
+
+//-----------------------------------------------------------------------------
+// Private
+
+//-----------------------------------------------------------------------------