X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=e4d57b33aa1d0f59ec806533a5a60e838fc8bfde;hb=616fe6757e5e27ce6ebb48e9e3bf3b42ab15be1c;hp=8e26cff34a830697fda8d6f514449ee21dd0059f;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index 8e26cff3..e4d57b33 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/12 04:35:45 $ - Version: $Revision: 1.10 $ + Date: $Date: 2004/10/25 04:08:20 $ + Version: $Revision: 1.13 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,9 +21,9 @@ #include "gdcmDicomDirObject.h" #include "gdcmDicomDirImage.h" + namespace gdcm { - //----------------------------------------------------------------------------- typedef std::list ListDicomDirImage; @@ -31,23 +31,25 @@ typedef std::list ListDicomDirImage; class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - DicomDirSerie(SQItem *s, TagDocEntryHT *ptagHT); - DicomDirSerie(TagDocEntryHT *ptagHT); + DicomDirSerie( SQItem* s, TagDocEntryHT* ptagHT ); + DicomDirSerie( TagDocEntryHT* ptagHT ); ~DicomDirSerie(); - virtual void Print(std::ostream &os = std::cout); - virtual void Write(FILE *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 Write( 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 @@ -59,7 +61,7 @@ private: /** * \brief chained list of DicomDirImages */ - ListDicomDirImage images; + ListDicomDirImage Images; }; } // end namespace gdcm //-----------------------------------------------------------------------------