X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=21a68c55e762eb1e6d0bbb0ef306994d84dbe415;hb=4491b768d9529a24608e44d6ef77dc235d37dbb7;hp=4f4371a30b6d7c203aa52549278bac0e21290f23;hpb=233c8b3ebb1aee6b1be6723d842eb2241b9ffb91;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index 4f4371a3..21a68c55 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.h,v $ Language: C++ - Date: $Date: 2004/12/03 17:13:18 $ - Version: $Revision: 1.15 $ + Date: $Date: 2005/01/28 17:01:29 $ + 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 @@ -20,46 +20,43 @@ #define GDCMDICOMDIRSERIE_H #include "gdcmDicomDirObject.h" -#include "gdcmDicomDirImage.h" namespace gdcm { +class DicomDirImage; //----------------------------------------------------------------------------- typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- +/** + * \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 ); - void WriteContent( std::ofstream* fp, FileType t ); - - /** - * \ingroup DicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. - */ - ListDicomDirImage const & GetDicomDirImages() const { return Images; }; + void Print( std::ostream &os = std::cout, std::string const & indent = "" ); + void WriteContent( std::ofstream *fp, FileType t ); + + // should avoid exposing internal mechanism + DicomDirImage *GetFirstImage(); + DicomDirImage *GetNextImage(); + + /// adds the passed IMAGE to the IMAGE chained List for this SERIE. + void AddImage(DicomDirImage *obj) { Images.push_back(obj); }; + DicomDirImage *NewImage(); - /** - * \ingroup DicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); }; + void ClearImage(); -/** - * \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 //-----------------------------------------------------------------------------