X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirPatient.cxx;h=fb5fa9ac3112170af322cc3c359145568f56317e;hb=446ab2af0e3045cd559b086ced08a8cc5a61d2e2;hp=827604aa9982125ad5991d3c6949e99db5ef46e4;hpb=fea9426f960497d2d9124ab532d2097f2915678f;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 827604aa..fb5fa9ac 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2004/10/22 03:05:41 $ - Version: $Revision: 1.16 $ + Date: $Date: 2004/12/03 20:16:57 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,29 +19,21 @@ #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" + namespace gdcm { //----------------------------------------------------------------------------- // Constructor / Destructor -/** - * \brief Constructor - * @param s SQ Item holding the elements related to this "PATIENT" part - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) - */ -DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT): - DicomDirObject(ptagHT) -{ - docEntries = s->GetDocEntries(); -} /** * \brief Constructor * @param ptagHT pointer to the HTable (DicomDirObject needs it * to build the HeaderEntries) */ -DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirPatient::DicomDirPatient(): + DicomDirObject() { } /** @@ -49,8 +41,9 @@ DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): */ DicomDirPatient::~DicomDirPatient() { - for(ListDicomDirStudy::iterator cc = studies.begin(); - cc != studies.end(); ++cc) + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) { delete *cc; } @@ -67,8 +60,9 @@ void DicomDirPatient::Print(std::ostream& os) os << "PATIENT" << std::endl; DicomDirObject::Print(os); - for(ListDicomDirStudy::iterator cc = studies.begin(); - cc != studies.end(); ++cc) + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) { (*cc)->SetPrintLevel(PrintLevel); (*cc)->Print(os); @@ -79,13 +73,15 @@ void DicomDirPatient::Print(std::ostream& os) * \brief Writes the Object * @return */ -void DicomDirPatient::Write(std::ofstream* fp, FileType t) +void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) { - DicomDirObject::Write(fp, t); + DicomDirObject::WriteContent(fp, t); - for(ListDicomDirStudy::iterator cc = studies.begin();cc!=studies.end();++cc) + for(ListDicomDirStudy::iterator cc = Studies.begin(); + cc!= Studies.end(); + ++cc ) { - (*cc)->Write( fp, t ); + (*cc)->WriteContent( fp, t ); } } //----------------------------------------------------------------------------- @@ -97,13 +93,13 @@ void DicomDirPatient::Write(std::ofstream* fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - std::list elemList = + ListDicomDirStudyElem const & elemList = Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy* st = new DicomDirStudy( PtagHT ); + DicomDirStudy* st = new DicomDirStudy(); st->FillObject(elemList); - studies.push_front(st); + Studies.push_front(st); return st; }