X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDir.h;h=eca86fbadc8c8eb30eb480c837df687fc1856ed7;hb=aff4772d80d574a6e549d9dfab0d085850039794;hp=07b099eabb2f2c1b3e05e36a7e5e36f54891b6a5;hpb=ac0c6624e5206f25f5adc7deb53f937e00e6e264;p=gdcm.git diff --git a/src/gdcmDicomDir.h b/src/gdcmDicomDir.h index 07b099ea..eca86fba 100644 --- a/src/gdcmDicomDir.h +++ b/src/gdcmDicomDir.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.h,v $ Language: C++ - Date: $Date: 2005/01/11 15:15:38 $ - Version: $Revision: 1.45 $ + Date: $Date: 2005/01/18 07:53:42 $ + Version: $Revision: 1.48 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -58,7 +58,7 @@ public: ~DicomDir(); /// \brief canonical Printer - void Print(std::ostream &os = std::cout); + void Print(std::ostream &os = std::cout, std::string const & indent = "" ); /// Informations contained in the parser virtual bool IsReadable(); @@ -66,8 +66,9 @@ public: /// Returns a pointer to the DicomDirMeta for this DICOMDIR. DicomDirMeta* GetDicomDirMeta() { return MetaElems; }; - /// Returns the PATIENT chained List for this DICOMDIR. - ListDicomDirPatient const & GetDicomDirPatients() const { return Patients; }; + // should avoid exposing internal mechanism + DicomDirPatient *GetFirstEntry(); + DicomDirPatient *GetNextEntry(); /// Parsing void ParseDirectory(); @@ -142,6 +143,7 @@ private: /// Pointer on *the* DicomDirObject 'DicomDirMeta Elements' DicomDirMeta* MetaElems; + ListDicomDirPatient::iterator ItDicomDirPatient; /// Chained list of DicomDirPatient (to be exploited recursively) ListDicomDirPatient Patients;