]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.h
ENH: Since HandleOutOfGroup0002 need access to the transfer syntax move the method...
[gdcm.git] / src / gdcmDicomDirPatient.h
index f5e7ebfc4a4fb835e9f6120f4af32c3a2ef1d26d..e33d4e15135a5c24fc1ec7c9f646eba286ec6e8c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.h,v $
   Language:  C++
-  Date:      $Date: 2004/11/25 15:46:11 $
-  Version:   $Revision: 1.13 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  Version:   $Revision: 1.17 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #define GDCMPATIENT_H
 
 #include "gdcmDicomDirObject.h"
-#include "gdcmDicomDirStudy.h"
-#include "gdcmSQItem.h"
 
 namespace gdcm 
 {
+class DicomDirStudy;
 
 //-----------------------------------------------------------------------------
 typedef std::list<DicomDirStudy*> ListDicomDirStudy;
 
 //-----------------------------------------------------------------------------
+/**
+ * \ingroup DicomDirPatient
+ * \brief   describes a PATIENT within a DICOMDIR (DicomDir)
+ */
+
 class GDCM_EXPORT DicomDirPatient : public DicomDirObject 
 {
 public:
-   DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT); 
-   DicomDirPatient(TagDocEntryHT *ptagHT); 
-
+   DicomDirPatient(); 
    ~DicomDirPatient();
 
    void Print(std::ostream &os = std::cout);
    void WriteContent(std::ofstream *fp, FileType t);
 
    /// Returns the STUDY chained List for this PATIENT.
-   ListDicomDirStudy const & GetDicomDirStudies() const { 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); };
 
    ///  TODO
-   DicomDirStudyNewStudy(); 
+   DicomDirStudy *NewStudy(); 
          
 private: