X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=d203a6294865b8d01203055986777da7e5dcb7c4;hb=1d69b92978803204089d270599133917d944c651;hp=906c0a63b4838cc39eb7bfd7e25a1e6c1730320e;hpb=fd37aa842b5d31ca266b6bda8a77f3201d02338d;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index 906c0a63..d203a629 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/09/27 08:39:06 $ - Version: $Revision: 1.9 $ + Date: $Date: 2004/10/12 04:35:45 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,17 +22,21 @@ #include "gdcmDicomDirObject.h" #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" + +namespace gdcm +{ + //----------------------------------------------------------------------------- -typedef std::list ListDicomDirStudy; +typedef std::list ListDicomDirStudy; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirPatient : public gdcmDicomDirObject +class GDCM_EXPORT DicomDirPatient : public DicomDirObject { public: - gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT); - gdcmDicomDirPatient(TagDocEntryHT *ptagHT); + DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT); + DicomDirPatient(TagDocEntryHT *ptagHT); - ~gdcmDicomDirPatient(); + ~DicomDirPatient(); virtual void Print(std::ostream &os = std::cout); virtual void Write(FILE *fp, FileType t); @@ -40,16 +44,17 @@ public: ListDicomDirStudy &GetDicomDirStudies() { return studies; }; /// adds the passed STUDY to the STUDY chained List for this PATIENT. - void AddDicomDirStudy(gdcmDicomDirStudy *obj) { studies.push_back(obj); }; + void AddDicomDirStudy(DicomDirStudy *obj) { studies.push_back(obj); }; /// TODO - gdcmDicomDirStudy* NewStudy(); + DicomDirStudy* NewStudy(); private: /// chained list of DicomDirStudy ListDicomDirStudy studies; }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif