1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirPatient.h,v $
6 Date: $Date: 2005/02/07 14:48:34 $
7 Version: $Revision: 1.26 $
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 =========================================================================*/
22 #include "gdcmDicomDirObject.h"
28 //-----------------------------------------------------------------------------
29 typedef std::list<DicomDirStudy*> ListDicomDirStudy;
31 //-----------------------------------------------------------------------------
33 * \brief describes a PATIENT within a DICOMDIR (DicomDir)
36 class GDCM_EXPORT DicomDirPatient : public DicomDirObject
39 DicomDirPatient(bool empty=false);
42 void Print(std::ostream &os = std::cout, std::string const &indent = "" );
43 void WriteContent(std::ofstream *fp, FileType t);
46 /// \brief Adds a new gdcmDicomDirStudy to the Patient
47 void AddStudy(DicomDirStudy *obj) { Studies.push_back(obj); };
48 DicomDirStudy *NewStudy();
51 DicomDirStudy *GetFirstStudy();
52 DicomDirStudy *GetNextStudy();
53 DicomDirStudy *GetLastStudy();
57 /// chained list of DicomDirStudy (to be exploited hierarchicaly)
58 ListDicomDirStudy Studies;
59 /// iterator on the DicomDirStudies of the current DicomDirPatient
60 ListDicomDirStudy::iterator ItStudy;
62 } // end namespace gdcm
64 //-----------------------------------------------------------------------------