X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=73680f8051df592defd78eac10bae7c8e14198f7;hb=e362e154b84f087750d1ed1f6671a34b3bf5ff7a;hp=035f6492805d66dd078277320d037ebe74948652;hpb=060ddb1e7fabdfc43c258dfd575df80e4023fd32;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 035f6492..73680f80 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2005/01/20 11:09:23 $ - Version: $Revision: 1.29 $ + Date: $Date: 2005/10/25 14:52:33 $ + Version: $Revision: 1.39 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -25,48 +25,29 @@ namespace gdcm { - //----------------------------------------------------------------------------- // Constructor / Destructor /** * \brief Constructor + * \note End user must use : DicomDir::NewPatient() */ -DicomDirPatient::DicomDirPatient(): - DicomDirObject() -{ -} -/** - * \brief Canonical destructor. - */ -DicomDirPatient::~DicomDirPatient() +DicomDirPatient::DicomDirPatient(bool empty) + :DicomDirObject() { - for(ListDicomDirStudy::const_iterator cc = Studies.begin(); - cc != Studies.end(); - ++cc ) + if ( !empty ) { - delete *cc; + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); } } -//----------------------------------------------------------------------------- -// Print /** - * \brief Prints the Object - * @param os ostream to write to - * @param indent indent - */ -void DicomDirPatient::Print(std::ostream &os, std::string const & ) + * \brief Canonical destructor. + */ +DicomDirPatient::~DicomDirPatient() { - os << "PATIENT" << std::endl; - DicomDirObject::Print(os); - - for(ListDicomDirStudy::const_iterator cc = Studies.begin(); - cc != Studies.end(); - ++cc ) - { - (*cc)->SetPrintLevel(PrintLevel); - (*cc)->Print(os); - } + ClearStudy(); } //----------------------------------------------------------------------------- @@ -89,21 +70,30 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) } /** - * \brief adds a new Patient at the begining of the PatientList + * \brief adds a new Patient at the beginning of the PatientList * of a partially created DICOMDIR */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - - DicomDirStudy *st = new DicomDirStudy(); - st->FillObject(elemList); - - Studies.push_back(st); - return st; + DicomDirStudy *dd = DicomDirStudy::New(); + Studies.push_back(dd); + return dd; } +/** + * \brief Remove all studies in the patient + */ +void DicomDirPatient::ClearStudy() +{ + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) + { + (*cc)->Delete(); + } + Studies.clear(); +} + /** * \brief Get the first entry while visiting the DicomDirStudy * \return The first DicomDirStudy if found, otherwhise NULL @@ -124,11 +114,10 @@ DicomDirStudy *DicomDirPatient::GetFirstStudy() DicomDirStudy *DicomDirPatient::GetNextStudy() { gdcmAssertMacro (ItStudy != Studies.end()) - { - ++ItStudy; - if (ItStudy != Studies.end()) - return *ItStudy; - } + + ++ItStudy; + if (ItStudy != Studies.end()) + return *ItStudy; return NULL; } @@ -154,5 +143,25 @@ DicomDirStudy *DicomDirPatient::GetLastStudy() // Private //----------------------------------------------------------------------------- +// Print +/** + * \brief Prints the Object + * @param os ostream to write to + * @param indent Indentation string to be prepended during printing + */ +void DicomDirPatient::Print(std::ostream &os, std::string const & ) +{ + os << "PATIENT" << std::endl; + DicomDirObject::Print(os); + for(ListDicomDirStudy::const_iterator cc = Studies.begin(); + cc != Studies.end(); + ++cc ) + { + (*cc)->SetPrintLevel(PrintLevel); + (*cc)->Print(os); + } +} + +//----------------------------------------------------------------------------- } // end namespace gdcm