X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=97331bf116180c8c0abd80e7da8ef09e79dbdc6b;hb=c22376d455941717d1fa0e43e4bd92a3399e6238;hp=3ef9dca7f83e0d038d2d5b338588c6db27920ea9;hpb=cc8f86d8d77d1e831a04d5c80ec95f2f125c5313;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index 3ef9dca7..97331bf1 100644 --- a/src/gdcmDicomDirPatient.h +++ b/src/gdcmDicomDirPatient.h @@ -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;