/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.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 GDCMDICOMDIRSTUDY_H #define GDCMDICOMDIRSTUDY_H #include "gdcmObject.h" #include "gdcmDicomDirSerie.h" //----------------------------------------------------------------------------- typedef std::list ListDicomDirSerie; //----------------------------------------------------------------------------- class GDCM_EXPORT gdcmDicomDirStudy : public gdcmObject { public: gdcmDicomDirStudy(gdcmSQItem *s, TagDocEntryHT *ptagHT); gdcmDicomDirStudy(TagDocEntryHT *ptagHT); ~gdcmDicomDirStudy(); virtual void Print(std::ostream &os = std::cout); /** * \ingroup gdcmDicomDirStudy * \brief returns the SERIE chained List for this STUDY. */ ListDicomDirSerie &GetDicomDirSeries() { return series; }; /** * \ingroup gdcmDicomDirStudy * \brief adds the passed SERIE to the SERIE chained List for this STUDY. */ void AddDicomDirSerie(gdcmDicomDirSerie *obj) { series.push_back(obj); }; /** * \ingroup gdcmDicomDirStudy * \brief TODO */ gdcmDicomDirSerie* NewSerie(); private: /** * \brief chained list of DicomDirSeries (to be exploited recursively) */ ListDicomDirSerie series; }; //----------------------------------------------------------------------------- #endif