1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirSerie.h,v $
6 Date: $Date: 2004/10/25 04:08:20 $
7 Version: $Revision: 1.13 $
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"
23 #include "gdcmDicomDirImage.h"
27 //-----------------------------------------------------------------------------
28 typedef std::list<DicomDirImage *> ListDicomDirImage;
30 //-----------------------------------------------------------------------------
31 class GDCM_EXPORT DicomDirSerie : public DicomDirObject
34 DicomDirSerie( SQItem* s, TagDocEntryHT* ptagHT );
35 DicomDirSerie( TagDocEntryHT* ptagHT );
39 void Print( std::ostream& os = std::cout );
40 void Write( std::ofstream* fp, FileType t );
43 * \ingroup DicomDirSerie
44 * \brief returns the IMAGE chained List for this SERIE.
46 ListDicomDirImage const & GetDicomDirImages() const { return Images; };
49 * \ingroup DicomDirSerie
50 * \brief adds the passed IMAGE to the IMAGE chained List for this SERIE.
52 void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); };
55 * \ingroup DicomDirSerie
58 DicomDirImage* NewImage();
62 * \brief chained list of DicomDirImages
64 ListDicomDirImage Images;
66 } // end namespace gdcm
67 //-----------------------------------------------------------------------------