]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.h
ENH: Initial pass at playing with regex in cmake, to parse dicomV3.dic to stick in...
[gdcm.git] / src / gdcmDicomDirPatient.h
index f4cc06e8837e380e1ff1db4c839f998d274278bc..742e37407e0513d95d4681a816b5a2b4847fc363 100644 (file)
@@ -3,8 +3,8 @@
   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/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
 #ifndef GDCMPATIENT_H
 #define GDCMPATIENT_H
 
-#include "gdcmObject.h"
+#include "gdcmDicomDirObject.h"
 #include "gdcmDicomDirStudy.h"
 #include "gdcmSQItem.h"
 //-----------------------------------------------------------------------------
 typedef std::list<gdcmDicomDirStudy*> 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; };