X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirSerie.cxx;h=1fe41dc3afec6b08784cd6140b4030676319e36b;hb=66c8b2ef6c096d675afb963778604ed7ae72a78c;hp=97bd2594c4dc1112dc9981896ebddec581498f70;hpb=4c094fc81258a88d3c86223994d02d63f8e2652a;p=gdcm.git diff --git a/src/gdcmDicomDirSerie.cxx b/src/gdcmDicomDirSerie.cxx index 97bd2594..1fe41dc3 100644 --- a/src/gdcmDicomDirSerie.cxx +++ b/src/gdcmDicomDirSerie.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirSerie.cxx,v $ Language: C++ - Date: $Date: 2007/05/23 14:18:08 $ - Version: $Revision: 1.43 $ + Date: $Date: 2007/07/26 08:36:49 $ + 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 @@ -58,21 +58,21 @@ DicomDirSerie::~DicomDirSerie() * @param fp ofstream to write to * @param t Type of the File (explicit VR, implicitVR, ...) */ -void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t) +void DicomDirSerie::WriteContent(std::ofstream *fp, FileType t, bool insideMetaElements) { - DicomDirObject::WriteContent(fp, t); + DicomDirObject::WriteContent(fp, t, false); for(ListDicomDirImage::iterator cc = Images.begin(); cc!= Images.end(); ++cc ) { - (*cc)->WriteContent( fp, t ); + (*cc)->WriteContent( fp, t, false ); } for(ListDicomDirPrivate::iterator cc2 = Privates.begin(); cc2!= Privates.end(); ++cc2 ) { - (*cc2)->WriteContent( fp, t ); + (*cc2)->WriteContent( fp, t, false); } }