X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=5dbf4005ecb0ca7af06dc961948aa612a8e1d2d8;hb=b868cc4addde15e2f692a7b1fe9451c1335258f4;hp=26e61c47b5b3121566b4c2a4d79d03eafc6011d0;hpb=fea9426f960497d2d9124ab532d2097f2915678f;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index 26e61c47..5dbf4005 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/10/22 03:05:41 $ - Version: $Revision: 1.12 $ + Date: $Date: 2005/01/06 20:03:27 $ + Version: $Revision: 1.17 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,10 +20,10 @@ #define GDCMDICOMDIRSERIE_H #include "gdcmDicomDirObject.h" -#include "gdcmDicomDirImage.h" + namespace gdcm { - +class DicomDirImage; //----------------------------------------------------------------------------- typedef std::list ListDicomDirImage; @@ -31,35 +31,35 @@ typedef std::list ListDicomDirImage; class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - DicomDirSerie( SQItem* s, TagDocEntryHT* ptagHT ); - DicomDirSerie( TagDocEntryHT* ptagHT ); - + DicomDirSerie(); ~DicomDirSerie(); - virtual void Print( std::ostream& os = std::cout ); - virtual void Write( std::ofstream* fp, FileType t ); -/** - * \ingroup DicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. - */ - ListDicomDirImage& GetDicomDirImages() { return images; }; -/** - * \ingroup DicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - void AddDicomDirImage(DicomDirImage *obj) { images.push_back(obj); }; + 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; }; + + /** + * \ingroup DicomDirSerie + * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. + */ + void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); }; /** * \ingroup DicomDirSerie * \brief TODO */ - DicomDirImage* NewImage(); + DicomDirImage *NewImage(); private: /** * \brief chained list of DicomDirImages */ - ListDicomDirImage images; + ListDicomDirImage Images; }; } // end namespace gdcm //-----------------------------------------------------------------------------