X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.h;h=5dbf4005ecb0ca7af06dc961948aa612a8e1d2d8;hb=03acf3c119c6657129b8aeae8cb2205e481a105b;hp=6305de8691ed12de74828b48bdde8c9384f02afc;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.h b/src/gdcmDicomDirSerie.h index 6305de86..5dbf4005 100644 --- a/src/gdcmDicomDirSerie.h +++ b/src/gdcmDicomDirSerie.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.h,v $ Language: C++ - Date: $Date: 2004/08/01 02:39:09 $ - Version: $Revision: 1.6 $ + 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 - http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -19,45 +19,48 @@ #ifndef GDCMDICOMDIRSERIE_H #define GDCMDICOMDIRSERIE_H -#include "gdcmObject.h" -#include "gdcmDicomDirImage.h" +#include "gdcmDicomDirObject.h" +namespace gdcm +{ +class DicomDirImage; //----------------------------------------------------------------------------- -typedef std::list ListDicomDirImage; +typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject +class GDCM_EXPORT DicomDirSerie : public DicomDirObject { public: - gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT); - gdcmDicomDirSerie(TagDocEntryHT *ptagHT); + DicomDirSerie(); + ~DicomDirSerie(); - ~gdcmDicomDirSerie(); + void Print( std::ostream &os = std::cout ); + void WriteContent( std::ofstream *fp, FileType t ); - virtual void Print(std::ostream &os = std::cout); -/** - * \ingroup gdcmDicomDirSerie - * \brief returns the IMAGE chained List for this SERIE. - */ - ListDicomDirImage &GetDicomDirImages() { return images; }; -/** - * \ingroup gdcmDicomDirSerie - * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE. - */ - void AddDicomDirImage(gdcmDicomDirImage *obj) { images.push_back(obj); }; + /** + * \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 gdcmDicomDirSerie + * \ingroup DicomDirSerie * \brief TODO */ - gdcmDicomDirImage* NewImage(); + DicomDirImage *NewImage(); private: /** * \brief chained list of DicomDirImages */ - ListDicomDirImage images; + ListDicomDirImage Images; }; - +} // end namespace gdcm //----------------------------------------------------------------------------- #endif