X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=906c0a63b4838cc39eb7bfd7e25a1e6c1730320e;hb=a8e108589a4d5b8a0fc4a0ff758f962b16a9dabc;hp=87c039bdea25d90e023a722c2c3bd0e4e6216742;hpb=30d2b02b938fe912d866b40ca2b9842961481ab2;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index 87c039bd..906c0a63 100644 --- a/src/gdcmDicomDirPatient.h +++ b/src/gdcmDicomDirPatient.h @@ -1,47 +1,53 @@ -// gdcmDicomDirPatient.h -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirPatient.h,v $ + Language: C++ + Date: $Date: 2004/09/27 08:39:06 $ + Version: $Revision: 1.9 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #ifndef GDCMPATIENT_H #define GDCMPATIENT_H -#include "gdcmObject.h" +#include "gdcmDicomDirObject.h" #include "gdcmDicomDirStudy.h" #include "gdcmSQItem.h" //----------------------------------------------------------------------------- -typedef std::list ListDicomDirStudy; +typedef std::list ListDicomDirStudy; //----------------------------------------------------------------------------- -class GDCM_EXPORT gdcmDicomDirPatient : public gdcmObject +class GDCM_EXPORT gdcmDicomDirPatient : public gdcmDicomDirObject { 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); + virtual void Write(FILE *fp, FileType t); + /// 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; };