]> Creatis software - gdcm.git/blob - src/gdcmElValue.cxx
ef00cd188f18712f532dd1a9ec4df8e3e10d26c9
[gdcm.git] / src / gdcmElValue.cxx
1 // gdcmElValue.cxx
2
3
4 // TODO
5 // A 'gdcmElValue' is actually a 'Dicom Element'.
6 // WHY such a confusing name???
7 //
8 #include "gdcmElValue.h"
9
10 /**
11  * \ingroup gdcmElValue
12  * \brief   Constructor from a given gdcmDictEntry
13  * @param   in Pointer to existing dictionary entry
14  */
15
16 gdcmElValue::gdcmElValue(gdcmDictEntry* in) {
17         ImplicitVr = false;
18         entry = in;
19 }
20