X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirMeta.cxx;h=e7202b02ed1847db51fa1318a0cc2a5b59debe68;hb=692f863c018c259a380e664d3608a46ec0c8bb3e;hp=2cec741b7163f9845d4600572a6d8acc2026c961;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index 2cec741b..e7202b02 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/06/20 18:08:47 $ - Version: $Revision: 1.4 $ + Date: $Date: 2004/08/30 16:15:40 $ + Version: $Revision: 1.8 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -44,19 +44,35 @@ gdcmDicomDirMeta::~gdcmDicomDirMeta() //----------------------------------------------------------------------------- // Print /** - * \ingroup gdcmDicomDirMeta - * \brief Prints the Object - * @return + * \brief Prints the Meta Elements */ void gdcmDicomDirMeta::Print(std::ostream &os) { - os<<"META"<Print(); } + //----------------------------------------------------------------------------- // Public + +/** + * \brief Writes the Meta Elements + * @return + */ +void gdcmDicomDirMeta::Write(FILE *fp, FileType t) +{ + for (ListDocEntry::iterator i = docEntries.begin(); + i != docEntries.end(); + ++i) + (*i)->Write(fp, t); +} + //----------------------------------------------------------------------------- // Protected