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