]> Creatis software - gdcm.git/blob - src/gdcmDicomDirMeta.cxx
Doxygenation (Print method)
[gdcm.git] / src / gdcmDicomDirMeta.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirMeta.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/18 14:28:32 $
7   Version:   $Revision: 1.23 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmDicomDirMeta.h"
20 #include "gdcmDocument.h"
21 #include "gdcmDocEntry.h"
22
23 namespace gdcm 
24 {
25
26 //-----------------------------------------------------------------------------
27 // Constructor / Destructor
28
29 /**
30  * \brief  Constructor
31  */ 
32 DicomDirMeta::DicomDirMeta():
33    DicomDirObject()
34 {
35 }
36
37 /**
38  * \brief   Canonical destructor.
39  */
40 DicomDirMeta::~DicomDirMeta() 
41 {
42 }
43
44 //-----------------------------------------------------------------------------
45 // Print
46 /**
47  * \brief   Prints the Meta Elements
48  * @param os ostream to write to 
49  * @param   indent indent
50  */ 
51 void DicomDirMeta::Print(std::ostream &os, std::string const & )
52 {
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();
57         ++i)
58    {
59       (*i)->SetPrintLevel(PrintLevel);
60       (*i)->Print();
61       os << std::endl;
62    }
63 }
64
65
66 //-----------------------------------------------------------------------------
67 // Public
68
69
70 /**
71  * \brief   Writes the Meta Elements
72  * @param fp ofstream to write to
73  * @param t File Type 
74  * @return
75  */ 
76 void DicomDirMeta::WriteContent(std::ofstream *fp, FileType t)
77 {   
78    for (ListDocEntry::iterator i = DocEntries.begin();  
79                               i != DocEntries.end();
80                               ++i)
81    {
82       (*i)->WriteContent(fp, t);
83    }
84 }
85
86 //-----------------------------------------------------------------------------
87 // Protected
88
89 //-----------------------------------------------------------------------------
90 // Private
91
92 //-----------------------------------------------------------------------------
93
94 } // end namespace gdcm