X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.h;h=dd3a4dc10eb2de16f6c339557ae6f221349f5bdb;hb=56ad78cdf3b5de32f0a94a38cd32ddc9f403ffc3;hp=e1cc299e7f70490e997cfa716f50dc3701ca1da6;hpb=fec70eb0129b86c02e256a069d3eec45c6c43e46;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.h b/src/gdcmDicomDirPatient.h index e1cc299e..dd3a4dc1 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/01/17 10:59:52 $ - Version: $Revision: 1.19 $ + Date: $Date: 2007/08/29 15:30:48 $ + Version: $Revision: 1.35 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -16,12 +16,12 @@ =========================================================================*/ -#ifndef GDCMPATIENT_H -#define GDCMPATIENT_H +#ifndef _GDCMPATIENT_H_ +#define _GDCMPATIENT_H_ #include "gdcmDicomDirObject.h" -namespace gdcm +namespace GDCM_NAME_SPACE { class DicomDirStudy; @@ -35,34 +35,37 @@ typedef std::list ListDicomDirStudy; class GDCM_EXPORT DicomDirPatient : public DicomDirObject { -public: - DicomDirPatient(); - ~DicomDirPatient(); + gdcmTypeMacro(DicomDirPatient); - void Print(std::ostream &os = std::cout, std::string const & indent = "" ); - void WriteContent(std::ofstream *fp, FileType t); +public: +/// \brief Constructs a DicomDirPatient with a RefCounter + static DicomDirPatient *New(bool empty=false) {return new DicomDirPatient(empty);} - // TODO Remove GetDicomDirStudies - // use InitTraversal + GetNextEntry instead. + void Print(std::ostream &os = std::cout, std::string const &indent = "" ); + void WriteContent(std::ofstream *fp, FileType t, bool insideMetaElements, bool insideSequence ); - /// Returns the STUDY chained List for this PATIENT. - ListDicomDirStudy const &GetDicomDirStudies() const { return Studies; }; + // Patient methods + /// \brief Adds a new gdcm::DicomDirStudy to the Patient + void AddStudy(DicomDirStudy *obj) { Studies.push_back(obj); } + DicomDirStudy *NewStudy(); + void ClearStudy(); - // should avoid exposing internal mechanism - void InitTraversal(); - DicomDirStudy *GetNextEntry(); + DicomDirStudy *GetFirstStudy(); + DicomDirStudy *GetNextStudy(); + DicomDirStudy *GetLastStudy(); + /// returns the number of Studies currently held in the gdcm::DicomDirPatient + int GetNumberOfStudies() { return Studies.size();} + virtual void Copy(DocEntrySet *set); - /// adds the passed STUDY to the STUDY chained List for this PATIENT. - void AddDicomDirStudy (DicomDirStudy *obj) { Studies.push_back(obj); }; +protected: + DicomDirPatient(bool empty=false); + ~DicomDirPatient(); - DicomDirStudy *NewStudy(); - 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 ItDicomDirStudy; + ListDicomDirStudy::iterator ItStudy; }; } // end namespace gdcm