]> Creatis software - gdcm.git/blob - src/gdcmSQItem.cxx
The shows goes on
[gdcm.git] / src / gdcmSQItem.cxx
1 // gdcmSQItem.cxx
2 //-----------------------------------------------------------------------------
3 //
4 #include "gdcmSQItem.h"
5 #include "gdcmGlobal.h"
6 #include "gdcmUtil.h"
7
8
9 //-----------------------------------------------------------------------------
10 // Constructor / Destructor
11 /**
12  * \ingroup gdcmSQItem
13  * \brief   Constructor from a given gdcmSQItem
14  */
15 gdcmSQItem::gdcmSQItem() : gdcmDocEntry( ) {
16
17
18 }
19
20 /**
21  * \brief   Canonical destructor.
22  */
23 gdcmSQItem::~gdcmSQItem() 
24 {
25    for(ListDocEntry::iterator cc = docEntries.begin();
26        cc != docEntries.end();
27        ++cc)
28    {
29       delete *cc;
30    }
31 }
32
33
34 //-----------------------------------------------------------------------------
35 // Print
36 /*
37  * \ingroup gdcmSQItem
38  * \brief   canonical Printer
39  */
40  
41
42 //-----------------------------------------------------------------------------
43 // Public
44
45 //-----------------------------------------------------------------------------
46 // Protected
47
48 //-----------------------------------------------------------------------------
49 // Private
50
51 //-----------------------------------------------------------------------------