/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.h,v $ Language: C++ Date: $Date: 2004/09/23 10:47:10 $ Version: $Revision: 1.8 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef GDCMPATIENT_H #define GDCMPATIENT_H #include "gdcmDicomDirObject.h" #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" //----------------------------------------------------------------------------- typedef std::list ListDicomDirStudy; //----------------------------------------------------------------------------- class GDCM_EXPORT gdcmDicomDirPatient : public gdcmDicomDirObject { public: gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT); gdcmDicomDirPatient(TagDocEntryHT *ptagHT); ~gdcmDicomDirPatient(); virtual void Print(std::ostream &os = std::cout); virtual void Write(FILE *fp, FileType t); /// Returns the STUDY chained List for this PATIENT. ListDicomDirStudy &GetDicomDirStudies() { return studies; }; /// adds the passed STUDY to the STUDY chained List for this PATIENT. void AddDicomDirStudy(gdcmDicomDirStudy *obj) { studies.push_back(obj); }; /// TODO gdcmDicomDirStudy* NewStudy(); private: /// chained list of DicomDirStudy ListDicomDirStudy studies; }; //----------------------------------------------------------------------------- #endif