]> Creatis software - gdcm.git/blob - src/gdcmHeaderEntry.cxx
update changeLog
[gdcm.git] / src / gdcmHeaderEntry.cxx
1 // gdcmHeaderEntry.cxx
2 //-----------------------------------------------------------------------------
3 //
4 #include "gdcmHeaderEntry.h"
5
6 //-----------------------------------------------------------------------------
7 // Constructor / Destructor
8 /**
9  * \ingroup gdcmHeaderEntry
10  * \brief   Constructor from a given gdcmDictEntry
11  * @param   in Pointer to existing dictionary entry
12  */
13 gdcmHeaderEntry::gdcmHeaderEntry(gdcmDictEntry* in) {
14         ImplicitVr = false;
15         entry = in;
16 }
17
18 //-----------------------------------------------------------------------------
19 // Print
20
21 //-----------------------------------------------------------------------------
22 // Public
23
24 //-----------------------------------------------------------------------------
25 // Protected
26
27 //-----------------------------------------------------------------------------
28 // Private
29
30 //-----------------------------------------------------------------------------