1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomDirMeta.cxx,v $
6 Date: $Date: 2004/12/16 13:46:37 $
7 Version: $Revision: 1.19 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmDicomDirMeta.h"
20 #include "gdcmDocument.h"
21 #include "gdcmDocEntry.h"
26 //-----------------------------------------------------------------------------
27 // Constructor / Destructor
30 * \ingroup DicomDirMeta
33 DicomDirMeta::DicomDirMeta():
39 * \ingroup DicomDirMeta
40 * \brief Canonical destructor.
42 DicomDirMeta::~DicomDirMeta()
46 //-----------------------------------------------------------------------------
49 * \brief Prints the Meta Elements
51 void DicomDirMeta::Print(std::ostream& os)
53 os << "META" << std::endl;
54 // warning : META doesn't behave exactly like a Objet
55 for (ListDocEntry::iterator i = DocEntries.begin();
56 i != DocEntries.end();
59 (*i)->SetPrintLevel(PrintLevel);
66 //-----------------------------------------------------------------------------
71 * \brief Writes the Meta Elements
74 void DicomDirMeta::WriteContent(std::ofstream* fp, FileType t)
76 for (ListDocEntry::iterator i = DocEntries.begin();
77 i != DocEntries.end();
80 (*i)->WriteContent(fp, t);
84 //-----------------------------------------------------------------------------
87 //-----------------------------------------------------------------------------
90 //-----------------------------------------------------------------------------
92 } // end namespace gdcm