X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirStudy.cxx;h=92630664ab69bbbccbea9ec1f4dcf4e2ff6db468;hb=e6ff7dc295436e9463650ea13ab965ce35ae126c;hp=e817e7340c52133fbc21ea62658018bf9edbb626;hpb=327dfe7647e3720b0f3125f9b19397cb9afc0ed3;p=gdcm.git diff --git a/src/gdcmDicomDirStudy.cxx b/src/gdcmDicomDirStudy.cxx index e817e734..92630664 100644 --- a/src/gdcmDicomDirStudy.cxx +++ b/src/gdcmDicomDirStudy.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.cxx,v $ Language: C++ - Date: $Date: 2005/01/06 20:03:27 $ - Version: $Revision: 1.22 $ + Date: $Date: 2005/01/18 14:28:32 $ + Version: $Revision: 1.27 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,6 +20,7 @@ #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" #include "gdcmDicomDirSerie.h" +#include "gdcmDebug.h" namespace gdcm { @@ -33,7 +34,6 @@ DicomDirStudy::DicomDirStudy(): { } /** - * \ingroup DicomDirStudy * \brief Canonical destructor. */ DicomDirStudy::~DicomDirStudy() @@ -51,9 +51,10 @@ DicomDirStudy::~DicomDirStudy() /** * \brief Prints the Object * @param os ostream to write to + * @param indent indent * @return */ -void DicomDirStudy::Print(std::ostream &os) +void DicomDirStudy::Print(std::ostream &os, std::string const & ) { os << "STUDY" << std::endl; DicomDirObject::Print(os); @@ -102,7 +103,35 @@ DicomDirSerie *DicomDirStudy::NewSerie() Series.push_front(st); return st; -} +} + + /** + * \brief Get the first entry while visiting the DicomDirSeries + * \return The first DicomDirSerie if found, otherwhise NULL + */ +DicomDirSerie *DicomDirStudy::GetFirstEntry() +{ + ItDicomDirSerie = Series.begin(); + if (ItDicomDirSerie != Series.end()) + return *ItDicomDirSerie; + return NULL; +} + +/** + * \brief Get the next entry while visiting the DicomDirSeries + * \note : meaningfull only if GetFirstEntry already called + * \return The next DicomDirSerie if found, otherwhise NULL + */ +DicomDirSerie *DicomDirStudy::GetNextEntry() +{ + gdcmAssertMacro (ItDicomDirSerie != Series.end()); + { + ++ItDicomDirSerie; + if (ItDicomDirSerie != Series.end()) + return *ItDicomDirSerie; + } + return NULL; +} //----------------------------------------------------------------------------- // Protected