X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirStudy.cxx;h=5c28eec9cc4cef55fd5e98bc2d6cf00c71bd3bf3;hb=f2dd0107ba49eda3386b34715cdc0c046d12397f;hp=e7f5cef21d22f10df1085f04b5c8f3c8051ab228;hpb=66c8b2ef6c096d675afb963778604ed7ae72a78c;p=gdcm.git diff --git a/src/gdcmDicomDirStudy.cxx b/src/gdcmDicomDirStudy.cxx index e7f5cef2..5c28eec9 100644 --- a/src/gdcmDicomDirStudy.cxx +++ b/src/gdcmDicomDirStudy.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirStudy.cxx,v $ Language: C++ - Date: $Date: 2007/07/26 08:36:49 $ - Version: $Revision: 1.44 $ + Date: $Date: 2007/08/29 15:30:49 $ + Version: $Revision: 1.45 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -58,22 +58,22 @@ DicomDirStudy::~DicomDirStudy() * @param t Type of the File (explicit VR, implicitVR, ...) * @return */ -void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t, bool insideMetaElements) +void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t, bool dummy, bool dummy2) { - DicomDirObject::WriteContent(fp, t, false); + DicomDirObject::WriteContent(fp, t, false, true); for(ListDicomDirSerie::iterator cc = Series.begin(); cc!= Series.end(); ++cc ) { - (*cc)->WriteContent( fp, t, false ); + (*cc)->WriteContent( fp, t, false, true ); } for(ListDicomDirVisit::iterator icc = Visits.begin(); icc!= Visits.end(); ++icc ) { - (*icc)->WriteContent( fp, t, false ); + (*icc)->WriteContent( fp, t, false, true ); } }