X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=906c0a63b4838cc39eb7bfd7e25a1e6c1730320e;hb=64f79e8efbfae49231d1f469aa4fcc4acf0da70c;hp=f4cc06e8837e380e1ff1db4c839f998d274278bc;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index f4cc06e8..906c0a63 100644 --- a/src/gdcmDicomDirPatient.h +++ b/src/gdcmDicomDirPatient.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.h,v $ Language: C++ - Date: $Date: 2004/08/01 02:39:09 $ - Version: $Revision: 1.6 $ + Date: $Date: 2004/09/27 08:39:06 $ + Version: $Revision: 1.9 $ 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. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -19,14 +19,14 @@ #ifndef GDCMPATIENT_H #define GDCMPATIENT_H -#include "gdcmObject.h" +#include "gdcmDicomDirObject.h" #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" //----------------------------------------------------------------------------- typedef std::list ListDicomDirStudy; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirPatient : public gdcmObject +class GDCM_EXPORT gdcmDicomDirPatient : public gdcmDicomDirObject { public: gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT); @@ -35,7 +35,7 @@ public: ~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; };