X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=e3235ec8e4aa45933c421e3af20c68d8b61c2cb2;hb=7e9537ac534af5c5b9c5231c1b7fdd7193c2255d;hp=f01d3984d43f3f9dd5b97bcdba0d3251cfee30b1;hpb=74e3bc05fade5a18f193e7d1122c74756c0e689e;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index f01d3984..e3235ec8 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/06 16:05:06 $ - Version: $Revision: 1.22 $ + Date: $Date: 2005/01/17 10:59:52 $ + Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -53,7 +53,7 @@ DicomDirPatient::~DicomDirPatient() * \brief Prints the Object * @param os ostream to write to */ -void DicomDirPatient::Print(std::ostream& os) +void DicomDirPatient::Print(std::ostream &os, std::string const & ) { os << "PATIENT" << std::endl; DicomDirObject::Print(os); @@ -72,7 +72,7 @@ void DicomDirPatient::Print(std::ostream& os) * @param fp ofstream to write to * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) { DicomDirObject::WriteContent(fp, t); @@ -92,16 +92,41 @@ void DicomDirPatient::WriteContent(std::ofstream* fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const & elemList = + ListDicomDirStudyElem const &elemList = Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy* st = new DicomDirStudy(); + DicomDirStudy *st = new DicomDirStudy(); st->FillObject(elemList); Studies.push_front(st); return st; } +/** + * \brief Initialise the visit of the DicomDirPatients + */ +void DicomDirPatient::InitTraversal() +{ + ItDicomDirStudy = Studies.begin(); +} + +/** + * \brief Get the next entry while visiting the DicomDirStudies + * \return The next DicomDirStudies if found, otherwhise NULL + */ +DicomDirStudy *DicomDirPatient::GetNextEntry() +{ + if (ItDicomDirStudy != Studies.end()) + { + DicomDirStudy *tmp = *ItDicomDirStudy; + ++ItDicomDirStudy; + return tmp; + } + else + { + return NULL; + } +} //----------------------------------------------------------------------------- // Protected