X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirMeta.cxx;h=43f2c0564efc983d2a0ec8983ac2c7f3999a780b;hb=e6ff7dc295436e9463650ea13ab965ce35ae126c;hp=985d7516e08cd220f590ea70b0c30e0237085773;hpb=8a3dd7efbcb545e7ed308eb7334b1e6dbbf40923;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index 985d7516..43f2c056 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: 2005/01/18 14:28:32 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -18,6 +18,7 @@ #include "gdcmDicomDirMeta.h" #include "gdcmDocument.h" +#include "gdcmDocEntry.h" namespace gdcm { @@ -26,37 +27,39 @@ namespace gdcm // Constructor / Destructor /** - * \ingroup DicomDirMeta * \brief Constructor */ -DicomDirMeta::DicomDirMeta(TagDocEntryHT* ptagHT): - DicomDirObject(ptagHT) +DicomDirMeta::DicomDirMeta(): + DicomDirObject() { - } /** - * \ingroup DicomDirMeta * \brief Canonical destructor. */ DicomDirMeta::~DicomDirMeta() { - } //----------------------------------------------------------------------------- // Print /** * \brief Prints the Meta Elements + * @param os ostream to write to + * @param indent indent */ -void DicomDirMeta::Print(std::ostream& os) +void DicomDirMeta::Print(std::ostream &os, std::string const & ) { os << "META" << std::endl; // warning : META doesn't behave exactly like a Objet - for (ListDocEntry::iterator i = DocEntries.begin(); + for (ListDocEntry::iterator i = DocEntries.begin(); i != DocEntries.end(); ++i) - (*i)->Print(); + { + (*i)->SetPrintLevel(PrintLevel); + (*i)->Print(); + os << std::endl; + } } @@ -66,15 +69,17 @@ void DicomDirMeta::Print(std::ostream& os) /** * \brief Writes the Meta Elements + * @param fp ofstream to write to + * @param t File Type * @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); } }