X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirPatient.cxx;h=fb5fa9ac3112170af322cc3c359145568f56317e;hb=8b50829e21f22a3353c83e3d902cdf20bc5367f6;hp=f6a149a9441bae6430f4df28ad29e610d447270f;hpb=1bae8d2ba47d1b9cc8acfb7b5ab82026e48275dd;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index f6a149a9..fb5fa9ac 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2004/11/25 15:46:11 $ - Version: $Revision: 1.19 $ + Date: $Date: 2004/12/03 20:16:57 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,29 +19,21 @@ #include "gdcmDicomDirPatient.h" #include "gdcmDicomDirElement.h" #include "gdcmGlobal.h" +#include "gdcmDicomDirStudy.h" +#include "gdcmSQItem.h" + namespace gdcm { //----------------------------------------------------------------------------- // Constructor / Destructor -/** - * \brief Constructor - * @param s SQ Item holding the elements related to this "PATIENT" part - * @param ptagHT pointer to the HTable (DicomDirObject needs it - * to build the HeaderEntries) - */ -DicomDirPatient::DicomDirPatient(SQItem *s, TagDocEntryHT *ptagHT) : - DicomDirObject(ptagHT) -{ - DocEntries = s->GetDocEntries(); -} /** * \brief Constructor * @param ptagHT pointer to the HTable (DicomDirObject needs it * to build the HeaderEntries) */ -DicomDirPatient::DicomDirPatient(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirPatient::DicomDirPatient(): + DicomDirObject() { } /** @@ -104,7 +96,7 @@ DicomDirStudy* DicomDirPatient::NewStudy() ListDicomDirStudyElem const & elemList = Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy* st = new DicomDirStudy( PtagHT ); + DicomDirStudy* st = new DicomDirStudy(); st->FillObject(elemList); Studies.push_front(st);