2 //-----------------------------------------------------------------------------
3 #include "gdcmDicomDirMeta.h"
5 //-----------------------------------------------------------------------------
6 // Constructor / Destructor
11 * @param begin iterator (inside the gdcmParser chained list)
12 * on the first Header Entry (i.e Dicom Element)
13 * related to the "META" part
14 * @param end iterator (inside the gdcmParser chained list)
15 * on the last Header Entry (i.e Dicom Element)
16 * related to the 'META' part
17 * @param ptagHT pointer to the HTable (gdcmObject needs it
18 * to build the gdcmHeaderEntries)
19 * @param plistEntries pointer to the chained List (gdcmObject needs it
20 * to build the gdcmHeaderEntries)
22 gdcmDicomDirMeta::gdcmDicomDirMeta(ListTag::iterator begin,
23 ListTag::iterator end,
24 TagHeaderEntryHT *ptagHT,
25 ListTag *plistEntries):
26 gdcmObject(begin,end,ptagHT,plistEntries)
31 * \ingroup gdcmDicomDirMeta
32 * \brief Canonical destructor.
34 gdcmDicomDirMeta::~gdcmDicomDirMeta()
38 //-----------------------------------------------------------------------------
41 * \ingroup gdcmDicomDirMeta
42 * \brief Prints the Object
45 void gdcmDicomDirMeta::Print(std::ostream &os)
47 os<<"META"<<std::endl;
48 gdcmObject::Print(os);
51 //-----------------------------------------------------------------------------
54 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
60 //-----------------------------------------------------------------------------