1 // gdcmDicomDirPatient.cxx
2 //-----------------------------------------------------------------------------
3 #include "gdcmDicomDirPatient.h"
4 #include "gdcmDicomDirElement.h"
7 //-----------------------------------------------------------------------------
8 // Constructor / Destructor
10 * \ingroup gdcmDicomDirPatient
12 * @param begin iterator (inside the gdcmParser chained list)
13 * on the first Header Entry (i.e Dicom Element)
14 * related to this "PATIENT" part
15 * @param end iterator (inside the gdcmParser chained list)
16 * on the last Header Entry (i.e Dicom Element)
17 * related to this 'PATIENT' part
18 * @param ptagHT pointer to the HTable (gdcmObject needs it
19 * to build the gdcmHeaderEntries)
20 * @param plistEntries pointer to the chained List (gdcmObject needs it
21 * to build the gdcmHeaderEntries)
23 gdcmDicomDirPatient::gdcmDicomDirPatient(ListTag::iterator begin,
24 ListTag::iterator end,
25 TagHeaderEntryHT *ptagHT,
26 ListTag *plistEntries):
27 gdcmObject(begin,end,ptagHT,plistEntries)
32 * \ingroup gdcmDicomDirPatient
33 * \brief Canonical destructor.
35 gdcmDicomDirPatient::~gdcmDicomDirPatient()
37 for(ListDicomDirStudy::iterator cc = studies.begin();cc != studies.end();++cc)
43 //-----------------------------------------------------------------------------
46 * \ingroup gdcmDicomDirPatient
47 * \brief Prints the Object
50 void gdcmDicomDirPatient::Print(std::ostream &os)
52 os<<"PATIENT"<<std::endl;
53 gdcmObject::Print(os);
55 for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc)
57 (*cc)->SetPrintLevel(printLevel);
62 //-----------------------------------------------------------------------------
66 * \ingroup gdcmDicomDir
67 * \brief adds a new Patient at the begining of the PatientList
68 * of a partially created DICOMDIR
70 gdcmDicomDirStudy * gdcmDicomDirPatient::NewStudy(void) {
71 std::list<gdcmElement> elemList;
72 elemList=gdcmGlobal::GetDicomDirElements()->GetDicomDirStudyElements();
75 gdcmDicomDirStudy *st = new gdcmDicomDirStudy(i, j, ptagHT, plistEntries);
76 studies.push_front(st);
82 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
88 //-----------------------------------------------------------------------------