X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirPatient.cxx;h=ceeea5b4fe4179e6a699b5712105b98d5c8c3f73;hb=1b0a484fb60998358b818b710071d82dc9003679;hp=035f6492805d66dd078277320d037ebe74948652;hpb=060ddb1e7fabdfc43c258dfd575df80e4023fd32;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 035f6492..ceeea5b4 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2005/01/20 11:09:23 $ - Version: $Revision: 1.29 $ + Date: $Date: 2005/01/23 10:12:33 $ + Version: $Revision: 1.31 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -31,10 +31,17 @@ namespace gdcm /** * \brief Constructor */ -DicomDirPatient::DicomDirPatient(): +DicomDirPatient::DicomDirPatient(bool empty): DicomDirObject() { + if( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirPatientElements(); + FillObject(elemList); + } } + /** * \brief Canonical destructor. */ @@ -53,7 +60,7 @@ DicomDirPatient::~DicomDirPatient() /** * \brief Prints the Object * @param os ostream to write to - * @param indent indent + * @param indent Indentation string to be prepended during printing */ void DicomDirPatient::Print(std::ostream &os, std::string const & ) { @@ -94,12 +101,7 @@ void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t) */ DicomDirStudy* DicomDirPatient::NewStudy() { - ListDicomDirStudyElem const &elemList = - Global::GetDicomDirElements()->GetDicomDirStudyElements(); - DicomDirStudy *st = new DicomDirStudy(); - st->FillObject(elemList); - Studies.push_back(st); return st; } @@ -154,5 +156,4 @@ DicomDirStudy *DicomDirPatient::GetLastStudy() // Private //----------------------------------------------------------------------------- - } // end namespace gdcm