1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirStudy.h,v $
6 Date: $Date: 2005/11/21 09:46:25 $
7 Version: $Revision: 1.31 $
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 GDCMDICOMDIRSTUDY_H
20 #define GDCMDICOMDIRSTUDY_H
22 #include "gdcmDicomDirObject.h"
28 //-----------------------------------------------------------------------------
29 typedef std::list<DicomDirSerie *> ListDicomDirSerie;
32 // For future use (Full DICOMDIR)
33 typedef std::list<DicomDirVisit *> ListDicomDirVisit;
35 typedef std::list<DicomDirResult *> ListDicomDirResult;
36 typedef std::list<DicomDirStudyComponent *> ListDicomDirStudyComponent;
38 //-----------------------------------------------------------------------------
40 * \brief describes a STUDY within a within a PATIENT
41 * (DicomDirPatient) of a given DICOMDIR (DicomDir)
43 class GDCM_EXPORT DicomDirStudy : public DicomDirObject
45 gdcmTypeMacro(DicomDirStudy);
48 /// \brief Constructs a DicomDirStudy with a RefCounter
49 static DicomDirStudy *New(bool empty=false) {return new DicomDirStudy(empty);}
51 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
52 void WriteContent(std::ofstream *fp, FileType t);
55 DicomDirSerie *NewSerie();
56 /// Adds a gdcm::DicomDirSerie to a gdcm::DicomDirStudy
57 void AddSerie(DicomDirSerie *obj) { Series.push_back(obj); }
59 DicomDirSerie *GetFirstSerie();
60 DicomDirSerie *GetNextSerie();
61 DicomDirSerie *GetLastSerie();
64 DicomDirVisit *NewVisit();
65 /// Adds a gdcm::DicomDirVisit to a gdcm::DicomDirStudy
66 void AddVisit(DicomDirVisit *obj) { Visits.push_back(obj); }
68 DicomDirVisit *GetFirstVisit();
69 DicomDirVisit *GetNextVisit();
70 DicomDirVisit *GetLastVisit();
72 // for future use (Full DICOMDIR)
74 DicomDirResult *GetFirstResult();
75 DicomDirResult *GetNextResult();
76 DicomDirResult *GetLastResult();
78 DicomDirStudyComponent *GetFirstStudyComponent();
79 DicomDirStudyComponent *GetNextStudyComponent();
80 DicomDirStudyComponent *GetLastStudyComponent();
84 DicomDirStudy(bool empty=false);
88 /// chained list of DicomDirSeries (to be exploited hierarchicaly)
89 ListDicomDirSerie Series;
90 /// iterator on the DicomDirSeries of the current DicomDirStudy
91 ListDicomDirSerie::iterator ItSerie;
93 /// chained list of DicomDirVisits(single level)
94 ListDicomDirVisit Visits;
95 /// iterator on the DicomDirVisits of the current DicomDirStudy
96 ListDicomDirVisit::iterator ItVisit;
99 // for future use (Full DICOMDIR)
101 /// chained list of DicomDirResults(single level)
102 ListDicomDirResult Results;
103 /// iterator on the DicomDirResults of the current DicomDirStudy
104 ListDicomDirResult::iterator ItResult;
106 /// chained list of DicomDirStudyComponents(single level)
107 ListDicomDirStudyComponent StudyComponents;
108 /// iterator on the DicomDirStudyComponents of the current DicomDirStudy
109 ListDicomDirStudyComponent::iterator ItStudyComponents;
112 } // end namespace gdcm
114 //-----------------------------------------------------------------------------