]> 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 339069021ba1525f4766c6eb402c6279eaeeb44e..64e3e247ef46f21066cf2331edf5f9a70870bc6c 100644 (file)
@@ -1,12 +1,33 @@
 // gdcmElValue.cxx
+//-----------------------------------------------------------------------------
+// TODO
+// A 'gdcmElValue' is actually a 'Dicom Element'.
+// WHY such a confusing name???
+//
+#include "gdcmElValue.h"
 
-#include "gdcm.h"
-
-       // void    ElValue::SetVR(string v)      { entry->SetVR(v);       };
-
-ElValue::ElValue(gdcmDictEntry* in) {
+//-----------------------------------------------------------------------------
+// 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;
 }
 
+//-----------------------------------------------------------------------------
+// Print
+
+//-----------------------------------------------------------------------------
+// Public
+
+//-----------------------------------------------------------------------------
+// Protected
+
+//-----------------------------------------------------------------------------
+// Private
 
+//-----------------------------------------------------------------------------