/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.h,v $ Language: C++ Date: $Date: 2004/08/01 02:39:09 $ Version: $Revision: 1.6 $ 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. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef GDCMDICOMDIRSERIE_H #define GDCMDICOMDIRSERIE_H #include "gdcmObject.h" #include "gdcmDicomDirImage.h" //----------------------------------------------------------------------------- typedef std::list ListDicomDirImage; //----------------------------------------------------------------------------- class GDCM_EXPORT gdcmDicomDirSerie : public gdcmObject { public: gdcmDicomDirSerie(gdcmSQItem *s, TagDocEntryHT *ptagHT); gdcmDicomDirSerie(TagDocEntryHT *ptagHT); ~gdcmDicomDirSerie(); 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 gdcmDicomDirSerie * \brief TODO */ gdcmDicomDirImage* NewImage(); private: /** * \brief chained list of DicomDirImages */ ListDicomDirImage images; }; //----------------------------------------------------------------------------- #endif