]> Creatis software - gdcm.git/blob - src/gdcmMeta.cxx
* ENH : now gdcmDicomDir::CreateDicomDir() returns also the meta elements
[gdcm.git] / src / gdcmMeta.cxx
1 // gdcmMeta.cxx
2 //-----------------------------------------------------------------------------
3 #include "gdcmMeta.h"
4
5 //-----------------------------------------------------------------------------
6 // Constructor / Destructor
7 /**
8  * \ingroup gdcmMeta
9  * \brief   
10  * @param   begin iterator of begin for the object
11  * @param   end   iterator of end for the object
12  */
13 gdcmMeta::gdcmMeta(ListTag::iterator begin,ListTag::iterator end):
14    gdcmObject(begin,end)
15 {
16 }
17
18 /**
19  * \ingroup gdcmMeta
20  * \brief   Canonical destructor.
21  */
22 gdcmMeta::~gdcmMeta() 
23 {
24 }
25
26 //-----------------------------------------------------------------------------
27 // Print
28 /**
29  * \ingroup gdcmMeta
30  * \brief   Prints the Object
31  * @return
32  */ 
33 void gdcmMeta::Print(std::ostream &os)
34 {
35    os<<"META : ";
36    os<<std::endl;
37
38    gdcmObject::Print(os);
39 }
40
41 //-----------------------------------------------------------------------------
42 // Public
43
44 //-----------------------------------------------------------------------------
45 // Protected
46
47 //-----------------------------------------------------------------------------
48 // Private
49
50 //-----------------------------------------------------------------------------