1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirSerie.h,v $
6 Date: $Date: 2005/01/18 07:53:42 $
7 Version: $Revision: 1.21 $
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 * \brief describes a SERIE within a within a STUDY
33 * (DicomDirStudy) of a given DICOMDIR (DicomDir)
35 class GDCM_EXPORT DicomDirSerie : public DicomDirObject
41 void Print( std::ostream &os = std::cout, std::string const & indent = "" );
42 void WriteContent( std::ofstream *fp, FileType t );
44 /// Returns the IMAGE chained List for this SERIE.
45 ListDicomDirImage const &GetDicomDirImages() const { return Images; };
47 // should avoid exposing internal mechanism
48 DicomDirImage *GetFirstEntry();
49 DicomDirImage *GetNextEntry();
51 /// adds the passed IMAGE to the IMAGE chained List for this SERIE.
52 void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); };
54 DicomDirImage *NewImage();
58 ///chained list of DicomDirImages (to be exploited recursively)
59 ListDicomDirImage Images;
60 /// iterator on the DicomDirImages of the current DicomDirSerie
61 ListDicomDirImage::iterator ItDicomDirImage;
63 } // end namespace gdcm
64 //-----------------------------------------------------------------------------