X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=f4cc06e8837e380e1ff1db4c839f998d274278bc;hb=b41ec3e7273db814e01c684b73937c62f95f4dfc;hp=cbd99e4a5774dbeb6ca42567f796d1c1fe396700;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index cbd99e4a..f4cc06e8 100644 --- a/src/gdcmDicomDirPatient.h +++ b/src/gdcmDicomDirPatient.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.h,v $ Language: C++ - Date: $Date: 2004/06/20 18:08:47 $ - Version: $Revision: 1.4 $ + Date: $Date: 2004/08/01 02:39:09 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -23,7 +23,7 @@ #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" //----------------------------------------------------------------------------- -typedef std::list ListDicomDirStudy; +typedef std::list ListDicomDirStudy; //----------------------------------------------------------------------------- class GDCM_EXPORT gdcmDicomDirPatient : public gdcmObject @@ -32,32 +32,22 @@ public: gdcmDicomDirPatient(gdcmSQItem *s, TagDocEntryHT *ptagHT); gdcmDicomDirPatient(TagDocEntryHT *ptagHT); - ~gdcmDicomDirPatient(void); + ~gdcmDicomDirPatient(); virtual void Print(std::ostream &os = std::cout); -/** - * \ingroup gdcmDicomDirPatient - * \brief returns the STUDY chained List for this PATIENT. - */ - inline ListDicomDirStudy &GetDicomDirStudies() - {return studies;}; -/** - * \ingroup gdcmDicomDirPatient - * \brief adds the passed STUDY to the STUDY chained List for this PATIENT. - */ - inline void AddDicomDirStudy(gdcmDicomDirStudy *obj) - {studies.push_back(obj);}; -/** - * \ingroup gdcmDicomDirPatient - * \brief TODO - */ - gdcmDicomDirStudy* NewStudy(void); + + /// Returns the STUDY chained List for this PATIENT. + ListDicomDirStudy &GetDicomDirStudies() { return studies; }; + + /// adds the passed STUDY to the STUDY chained List for this PATIENT. + void AddDicomDirStudy(gdcmDicomDirStudy *obj) { studies.push_back(obj); }; + + /// TODO + gdcmDicomDirStudy* NewStudy(); private: -/** -* \brief chained list of DicomDirStudy -*/ + /// chained list of DicomDirStudy ListDicomDirStudy studies; };