X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=81e92bdda88a36b9a09618a9cff2483702337b9e;hb=96c05d9a3c7b93c91aa8fda180553c380e69c9b7;hp=d86e5e49f1a75de5657d2792378d973622f92079;hpb=e8caac199c2683cb0f118c42c61dc6aec85b1eec;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index d86e5e49..81e92bdd 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.h,v $ Language: C++ - Date: $Date: 2005/01/16 04:50:41 $ - Version: $Revision: 1.19 $ + Date: $Date: 2005/02/04 16:51:36 $ + 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 @@ -29,42 +29,33 @@ typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- /** - * \ingroup DicomDirSerie * \brief describes a SERIE within a within a STUDY * (DicomDirStudy) of a given DICOMDIR (DicomDir) */ class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - DicomDirSerie(); + DicomDirSerie(bool empty=false); ~DicomDirSerie(); - void Print( std::ostream &os = std::cout, std::string const & indent = "" ); + void Print( std::ostream &os = std::cout, std::string const &indent = "" ); void WriteContent( std::ofstream *fp, FileType t ); - /** - * \ingroup DicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. - */ - ListDicomDirImage const &GetDicomDirImages() const { return Images; }; + // Image methods + DicomDirImage *NewImage(); + /// Add a new gdcm::DicomDirImage to the Serie + void AddImage(DicomDirImage *obj) { Images.push_back(obj); }; + void ClearImage(); - /** - * \ingroup DicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); }; + DicomDirImage *GetFirstImage(); + DicomDirImage *GetNextImage(); -/** - * \ingroup DicomDirSerie - * \brief TODO - */ - DicomDirImage *NewImage(); - private: -/** -* \brief chained list of DicomDirImages -*/ + + ///chained list of DicomDirImages (to be exploited recursively) ListDicomDirImage Images; + /// iterator on the DicomDirImages of the current DicomDirSerie + ListDicomDirImage::iterator ItImage; }; } // end namespace gdcm //-----------------------------------------------------------------------------