]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirPatient.h
COMP: Too bad gcc3.3 on APPLE does not supported deprecated attribute on ctor......
[gdcm.git] / src / gdcmDicomDirPatient.h
index 3ef9dca7f83e0d038d2d5b338588c6db27920ea9..97331bf116180c8c0abd80e7da8ef09e79dbdc6b 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirPatient.h,v $
   Language:  C++
-  Date:      $Date: 2005/02/02 14:52:25 $
-  Version:   $Revision: 1.24 $
+  Date:      $Date: 2005/02/07 14:48:34 $
+  Version:   $Revision: 1.26 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -39,10 +39,11 @@ public:
    DicomDirPatient(bool empty=false); 
    ~DicomDirPatient();
 
-   void Print(std::ostream &os = std::cout, std::string const & indent = "" );
+   void Print(std::ostream &os = std::cout, std::string const &indent = "" );
    void WriteContent(std::ofstream *fp, FileType t);
   
    // Patient methods
+   /// \brief Adds a new gdcmDicomDirStudy to the Patient
    void AddStudy(DicomDirStudy *obj) { Studies.push_back(obj); };
    DicomDirStudy *NewStudy(); 
    void ClearStudy();
@@ -53,7 +54,7 @@ public:
 
 private:
 
-   /// chained list of DicomDirStudy  (to be exploited recursively)
+   /// chained list of DicomDirStudy  (to be exploited hierarchicaly)
    ListDicomDirStudy Studies;
    /// iterator on the DicomDirStudies of the current DicomDirPatient
    ListDicomDirStudy::iterator ItStudy;