1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirPatient.h,v $
6 Date: $Date: 2004/10/12 04:35:45 $
7 Version: $Revision: 1.10 $
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"
23 #include "gdcmDicomDirStudy.h"
24 #include "gdcmSQItem.h"
29 //-----------------------------------------------------------------------------
30 typedef std::list<DicomDirStudy*> ListDicomDirStudy;
32 //-----------------------------------------------------------------------------
33 class GDCM_EXPORT DicomDirPatient : public DicomDirObject
36 DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT);
37 DicomDirPatient(TagDocEntryHT *ptagHT);
41 virtual void Print(std::ostream &os = std::cout);
42 virtual void Write(FILE *fp, FileType t);
43 /// Returns the STUDY chained List for this PATIENT.
44 ListDicomDirStudy &GetDicomDirStudies() { return studies; };
46 /// adds the passed STUDY to the STUDY chained List for this PATIENT.
47 void AddDicomDirStudy(DicomDirStudy *obj) { studies.push_back(obj); };
50 DicomDirStudy* NewStudy();
54 /// chained list of DicomDirStudy
55 ListDicomDirStudy studies;
57 } // end namespace gdcm
59 //-----------------------------------------------------------------------------