X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirMeta.cxx;h=64ff145978a9e942e7f96765e196a9b24ab00494;hb=aa37228ac9676de164789fca1e0ae7bf70fab147;hp=985d7516e08cd220f590ea70b0c30e0237085773;hpb=8a3dd7efbcb545e7ed308eb7334b1e6dbbf40923;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index 985d7516..64ff1459 100644 --- a/src/gdcmDicomDirMeta.cxx +++ b/src/gdcmDicomDirMeta.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirMeta.cxx,v $ Language: C++ - Date: $Date: 2004/10/25 03:35:19 $ - Version: $Revision: 1.14 $ + Date: $Date: 2004/11/25 15:46:10 $ + Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -68,13 +68,13 @@ void DicomDirMeta::Print(std::ostream& os) * \brief Writes the Meta Elements * @return */ -void DicomDirMeta::Write(std::ofstream* fp, FileType t) +void DicomDirMeta::WriteContent(std::ofstream* fp, FileType t) { for (ListDocEntry::iterator i = DocEntries.begin(); i != DocEntries.end(); ++i) { - (*i)->Write(fp, t); + (*i)->WriteContent(fp, t); } }