]> Creatis software - gdcm.git/blob - src/gdcmDicomDirSerie.h
Some more Doxygenation
[gdcm.git] / src / gdcmDicomDirSerie.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirSerie.h,v $
5   Language:  C++
6   Date:      $Date: 2005/02/04 16:51:36 $
7   Version:   $Revision: 1.27 $
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
24 namespace gdcm 
25 {
26 class DicomDirImage;
27 //-----------------------------------------------------------------------------
28 typedef std::list<DicomDirImage *> ListDicomDirImage;
29
30 //-----------------------------------------------------------------------------
31 /**
32  * \brief   describes a SERIE  within a within a STUDY
33  * (DicomDirStudy) of a given DICOMDIR (DicomDir)
34  */
35 class GDCM_EXPORT DicomDirSerie : public DicomDirObject 
36 {
37 public:
38    DicomDirSerie(bool empty=false); 
39    ~DicomDirSerie();
40
41    void Print( std::ostream &os = std::cout, std::string const &indent = "" );
42    void WriteContent( std::ofstream *fp, FileType t );
43
44    // Image methods
45    DicomDirImage *NewImage();
46    /// Add a new gdcm::DicomDirImage to the Serie
47    void AddImage(DicomDirImage *obj) { Images.push_back(obj); };
48    void ClearImage();
49
50    DicomDirImage *GetFirstImage();
51    DicomDirImage *GetNextImage();
52
53 private:
54
55    ///chained list of DicomDirImages (to be exploited recursively)
56    ListDicomDirImage Images;
57    /// iterator on the DicomDirImages of the current DicomDirSerie
58    ListDicomDirImage::iterator ItImage;
59 };
60 } // end namespace gdcm
61 //-----------------------------------------------------------------------------
62 #endif