X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirPatient.cxx;h=c8cc875f876354c73702860af433fe5f2bcad480;hb=c1a305b54c1a9dd1bfe2173940ba84ccd1b4bb27;hp=0e2e577a789f0b759288781381d76075ec628d57;hpb=66c8b2ef6c096d675afb963778604ed7ae72a78c;p=gdcm.git diff --git a/src/gdcmDicomDirPatient.cxx b/src/gdcmDicomDirPatient.cxx index 0e2e577a..c8cc875f 100644 --- a/src/gdcmDicomDirPatient.cxx +++ b/src/gdcmDicomDirPatient.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirPatient.cxx,v $ Language: C++ - Date: $Date: 2007/07/26 08:36:49 $ - Version: $Revision: 1.42 $ + Date: $Date: 2007/10/08 15:20:17 $ + Version: $Revision: 1.44 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -57,15 +57,15 @@ DicomDirPatient::~DicomDirPatient() * @param fp ofstream to write to * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t, bool insideMetaElements) +void DicomDirPatient::WriteContent(std::ofstream *fp, FileType t, bool , bool ) { - DicomDirObject::WriteContent(fp, t, false); + DicomDirObject::WriteContent(fp, t, false, true); for(ListDicomDirStudy::iterator cc = Studies.begin(); cc!= Studies.end(); ++cc ) { - (*cc)->WriteContent( fp, t, false ); + (*cc)->WriteContent( fp, t, false, true ); } }