]> Creatis software - gdcm.git/blob - src/gdcmElValue.cxx
* To remove warnings
[gdcm.git] / src / gdcmElValue.cxx
1 // gdcmElValue.cxx
2 //-----------------------------------------------------------------------------
3 // TODO
4 // A 'gdcmElValue' is actually a 'Dicom Element'.
5 // WHY such a confusing name???
6 //
7 #include "gdcmElValue.h"
8
9 //-----------------------------------------------------------------------------
10 // Constructor / Destructor
11 /**
12  * \ingroup gdcmElValue
13  * \brief   Constructor from a given gdcmDictEntry
14  * @param   in Pointer to existing dictionary entry
15  */
16 gdcmElValue::gdcmElValue(gdcmDictEntry* in) {
17         ImplicitVr = false;
18         entry = in;
19 }
20
21 //-----------------------------------------------------------------------------
22 // Print
23
24 //-----------------------------------------------------------------------------
25 // Public
26
27 //-----------------------------------------------------------------------------
28 // Protected
29
30 //-----------------------------------------------------------------------------
31 // Private
32
33 //-----------------------------------------------------------------------------