1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirElement.h,v $
6 Date: $Date: 2005/11/28 16:31:23 $
7 Version: $Revision: 1.37 $
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 GDCMDICOMDIRELEMENT_H
20 #define GDCMDICOMDIRELEMENT_H
22 #include "gdcmRefCounter.h"
29 //-----------------------------------------------------------------------------
31 typedef std::list<DicomElement> ListDicomDirElem;
32 typedef std::list<DicomElement> ListDicomDirMetaElem;
33 typedef std::list<DicomElement> ListDicomDirPatientElem;
34 typedef std::list<DicomElement> ListDicomDirStudyElem;
35 typedef std::list<DicomElement> ListDicomDirVisitElem;
36 typedef std::list<DicomElement> ListDicomDirSerieElem;
37 typedef std::list<DicomElement> ListDicomDirImageElem;
39 // For future use (Full DICOMDIR)
42 typedef std::list<DicomElement> ListDicomDirResultElem;
43 typedef std::list<DicomElement> ListDicomDirStudyComponentElem;
45 typedef std::list<DicomElement> ListDicomDirOverlayElem;
46 typedef std::list<DicomElement> ListDicomDirModalityLutElem;
47 typedef std::list<DicomElement> ListDicomDirModalityLutElem;
48 typedef std::list<DicomElement> ListDicomDirCurveElem;
49 typedef std::list<DicomElement> ListDicomDirStoredPrintElem;
50 typedef std::list<DicomElement> ListDicomDirRtDoseElem;
51 typedef std::list<DicomElement> ListDicomDirRtStructureSetElem;
52 typedef std::list<DicomElement> ListDicomDirRtPlanElem;
53 typedef std::list<DicomElement> ListDicomDirRtTreatRecordElem;
54 typedef std::list<DicomElement> ListDicomDirPresentationElem;
55 typedef std::list<DicomElement> ListDicomDirSrDocumentElem;
56 typedef std::list<DicomElement> ListDicomDirKeyObjectDocElem;
57 typedef std::list<DicomElement> ListDicomDirSpectroscopyElem;
58 typedef std::list<DicomElement> ListDicomDirRawDataElem;
59 typedef std::list<DicomElement> ListDicomDirRegistrationElem;
60 typedef std::list<DicomElement> ListDicomDirFiducialElem;
63 //-----------------------------------------------------------------------------
65 * \brief Represents elements contained in a DicomDir class
66 * for the chained lists from the file 'Dicts/DicomDir.dic'
68 class GDCM_EXPORT DicomDirElement : public RefCounter
70 gdcmTypeMacro(DicomDirElement);
73 /// \brief Contructs a DicomDirElement with a RefCounter
74 static DicomDirElement *New() {return new DicomDirElement();}
77 * \brief canonical Printer
79 virtual void Print(std::ostream &os = std::cout,
80 std::string const &indent = "" );
83 * \brief returns a reference to the chained List
84 * related to the META Elements of a DICOMDIR.
86 ListDicomDirMetaElem const &GetDicomDirMetaElements() const
87 { return DicomDirMetaList; }
90 * \brief returns a reference to the chained List
91 * related to the PATIENT Elements of a DICOMDIR.
93 ListDicomDirPatientElem const &GetDicomDirPatientElements() const
94 { return DicomDirPatientList; }
97 * \brief returns a reference to the chained List
98 * related to the STUDY Elements of a DICOMDIR.
100 ListDicomDirStudyElem const &GetDicomDirStudyElements() const
101 { return DicomDirStudyList; }
104 * \brief returns a reference to the chained List
105 * related to the VISIT Elements of a DICOMDIR.
107 ListDicomDirVisitElem const &GetDicomDirVisitElements() const
108 { return DicomDirVisitList; }
110 * \brief returns a reference to the chained List
111 * related to the SERIE Elements of a DICOMDIR.
113 ListDicomDirSerieElem const &GetDicomDirSerieElements() const
114 { return DicomDirSerieList; }
117 * \brief returns a reference to the chained List
118 * related to the IMAGE Elements of a DICOMDIR.
120 ListDicomDirImageElem const &GetDicomDirImageElements() const
121 { return DicomDirImageList; }
123 // Public method to add an element
124 bool AddEntry(DicomDirType type, DicomElement const &elem);
126 // Only one instance of ddElem
127 void AddDicomDirElement(DicomDirType type,
128 uint16_t group, uint16_t elem);
135 /// Elements chained list, related to the MetaElements of DICOMDIR
136 ListDicomDirMetaElem DicomDirMetaList;
137 /// Elements chained list, related to the PatientElements of DICOMDIR
138 ListDicomDirPatientElem DicomDirPatientList;
139 /// Elements chained list, related to the StudyElements of DICOMDIR
140 ListDicomDirStudyElem DicomDirStudyList;
141 /// Elements chained list, related to the VisitElements of DICOMDIR
142 ListDicomDirVisitElem DicomDirVisitList;
143 /// Elements chained list, related to the SerieElements of DICOMDIR
144 ListDicomDirSerieElem DicomDirSerieList;
145 /// Elements chained list, related to the ImageElements of DICOMDIR
146 ListDicomDirImageElem DicomDirImageList;
148 } // end namespace gdcm
149 //-----------------------------------------------------------------------------