1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirSerie.h,v $
6 Date: $Date: 2005/01/11 15:15:38 $
7 Version: $Revision: 1.18 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #ifndef GDCMDICOMDIRSERIE_H
20 #define GDCMDICOMDIRSERIE_H
22 #include "gdcmDicomDirObject.h"
27 //-----------------------------------------------------------------------------
28 typedef std::list<DicomDirImage *> ListDicomDirImage;
30 //-----------------------------------------------------------------------------
32 * \ingroup DicomDirSerie
33 * \brief describes a SERIE within a within a STUDY
34 * (DicomDirStudy) of a given DICOMDIR (DicomDir)
36 class GDCM_EXPORT DicomDirSerie : public DicomDirObject
42 void Print( std::ostream &os = std::cout );
43 void WriteContent( std::ofstream *fp, FileType t );
46 * \ingroup DicomDirSerie
47 * \brief returns the IMAGE chained List for this SERIE.
49 ListDicomDirImage const &GetDicomDirImages() const { return Images; };
52 * \ingroup DicomDirSerie
53 * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE.
55 void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); };
58 * \ingroup DicomDirSerie
61 DicomDirImage *NewImage();
65 * \brief chained list of DicomDirImages
67 ListDicomDirImage Images;
69 } // end namespace gdcm
70 //-----------------------------------------------------------------------------