]> Creatis software - gdcm.git/blobdiff - src/gdcmElValue.cxx
2003-11-03 Jean-Pierre Roux
[gdcm.git] / src / gdcmElValue.cxx
index bbcf731c7679d6f509b4f2218beb017e2dc15182..61b216ba75a53a8eec25c24828c685209f631028 100644 (file)
@@ -1,9 +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) {
+
+/**
+ * \ingroup gdcmElValue
+ * \brief   Constructor from a given gdcmDictEntry
+ * @param   in Pointer to existing dictionary entry
+ */
+
+gdcmElValue::gdcmElValue(gdcmDictEntry* in) {
        ImplicitVr = false;
        entry = in;
 }