X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=08d435cc90df1c1d4c06562e85d2e5fcc259eba5;hb=03acf3c119c6657129b8aeae8cb2205e481a105b;hp=d203a6294865b8d01203055986777da7e5dcb7c4;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index d203a629..08d435cc 100644 --- a/src/gdcmDicomDirPatient.h +++ b/src/gdcmDicomDirPatient.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.h,v $ Language: C++ - Date: $Date: 2004/10/12 04:35:45 $ - Version: $Revision: 1.10 $ + Date: $Date: 2005/01/06 20:03:27 $ + Version: $Revision: 1.16 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,12 +20,10 @@ #define GDCMPATIENT_H #include "gdcmDicomDirObject.h" -#include "gdcmDicomDirStudy.h" -#include "gdcmSQItem.h" namespace gdcm { - +class DicomDirStudy; //----------------------------------------------------------------------------- typedef std::list ListDicomDirStudy; @@ -33,26 +31,25 @@ typedef std::list ListDicomDirStudy; class GDCM_EXPORT DicomDirPatient : public DicomDirObject { public: - DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT); - DicomDirPatient(TagDocEntryHT *ptagHT); - + DicomDirPatient(); ~DicomDirPatient(); - virtual void Print(std::ostream &os = std::cout); - virtual void Write(FILE *fp, FileType t); + void Print(std::ostream &os = std::cout); + void WriteContent(std::ofstream *fp, FileType t); + /// Returns the STUDY chained List for this PATIENT. - ListDicomDirStudy &GetDicomDirStudies() { return studies; }; + ListDicomDirStudy const &GetDicomDirStudies() const { return Studies; }; /// adds the passed STUDY to the STUDY chained List for this PATIENT. - void AddDicomDirStudy(DicomDirStudy *obj) { studies.push_back(obj); }; + void AddDicomDirStudy (DicomDirStudy *obj) { Studies.push_back(obj); }; /// TODO - DicomDirStudy* NewStudy(); + DicomDirStudy *NewStudy(); private: /// chained list of DicomDirStudy - ListDicomDirStudy studies; + ListDicomDirStudy Studies; }; } // end namespace gdcm