]> Creatis software - gdcm.git/blob - src/gdcmDicomDirSerie.h
* src/ : fix compilation warnings for the Write method (2 different
[gdcm.git] / src / gdcmDicomDirSerie.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
5   Language:  C++
6   Date:      $Date: 2004/11/25 15:46:11 $
7   Version:   $Revision: 1.14 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMDICOMDIRSERIE_H
20 #define GDCMDICOMDIRSERIE_H
21
22 #include "gdcmDicomDirObject.h"
23 #include "gdcmDicomDirImage.h"
24
25 namespace gdcm 
26 {
27 //-----------------------------------------------------------------------------
28 typedef std::list<DicomDirImage *> ListDicomDirImage;
29
30 //-----------------------------------------------------------------------------
31 class GDCM_EXPORT DicomDirSerie : public DicomDirObject 
32 {
33 public:
34    DicomDirSerie( SQItem* s, TagDocEntryHT* ptagHT ); 
35    DicomDirSerie( TagDocEntryHT* ptagHT ); 
36
37    ~DicomDirSerie();
38
39    void Print( std::ostream& os = std::cout );
40    void WriteContent( std::ofstream* fp, FileType t );
41
42    /**
43     * \ingroup DicomDirSerie
44     * \brief   returns the IMAGE chained List for this SERIE.
45     */
46    ListDicomDirImage const & GetDicomDirImages() const { return Images; };
47
48    /**
49     * \ingroup DicomDirSerie
50     * \brief   adds the passed IMAGE to the IMAGE chained List for this SERIE.
51     */       
52    void AddDicomDirImage(DicomDirImage *obj) { Images.push_back(obj); };
53
54 /**
55  * \ingroup DicomDirSerie
56  * \brief   TODO
57  */ 
58    DicomDirImage* NewImage();
59     
60 private:
61 /**
62 * \brief chained list of DicomDirImages
63 */ 
64    ListDicomDirImage Images;
65 };
66 } // end namespace gdcm
67 //-----------------------------------------------------------------------------
68 #endif