]> Creatis software - gdcm.git/blob - src/gdcmDicomDirStudy.cxx
Coding Style + Doxygenation
[gdcm.git] / src / gdcmDicomDirStudy.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDicomDirStudy.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/06 20:03:27 $
7   Version:   $Revision: 1.22 $
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 "gdcmDicomDirStudy.h"
20 #include "gdcmDicomDirElement.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmDicomDirSerie.h"
23
24 namespace gdcm 
25 {
26 //-----------------------------------------------------------------------------
27 // Constructor / Destructor
28 /**
29  * \brief  Constructor 
30  */
31 DicomDirStudy::DicomDirStudy():
32    DicomDirObject()
33 {
34 }
35 /**
36  * \ingroup DicomDirStudy
37  * \brief   Canonical destructor.
38  */
39 DicomDirStudy::~DicomDirStudy() 
40 {
41    for(ListDicomDirSerie::iterator cc = Series.begin();
42                                    cc != Series.end();
43                                  ++cc )
44    {
45       delete *cc;
46    }
47 }
48
49 //-----------------------------------------------------------------------------
50 // Print
51 /**
52  * \brief   Prints the Object
53  * @param os ostream to write to 
54  * @return
55  */ 
56 void DicomDirStudy::Print(std::ostream &os)
57 {
58    os << "STUDY" << std::endl;
59    DicomDirObject::Print(os);
60
61    for(ListDicomDirSerie::iterator cc = Series.begin();
62                                    cc != Series.end();
63                                    ++cc)
64    {
65       (*cc)->SetPrintLevel(PrintLevel);
66       (*cc)->Print(os);
67    }
68 }
69
70 //-----------------------------------------------------------------------------
71 // Public
72
73 /**
74  * \brief   Writes the Object
75  * @param fp ofstream to write to
76  * @param t Type of the File (explicit VR, implicitVR, ...) 
77  * @return
78  */ 
79 void DicomDirStudy::WriteContent(std::ofstream *fp, FileType t)
80 {
81    DicomDirObject::WriteContent(fp, t);
82
83    for(ListDicomDirSerie::iterator cc = Series.begin();
84                                    cc!= Series.end();
85                                  ++cc )
86    {
87       (*cc)->WriteContent( fp, t );
88    }
89 }
90
91 /**
92  * \brief   adds a new Serie at the begining of the SerieList
93  *          of a partially created DICOMDIR
94  */
95 DicomDirSerie *DicomDirStudy::NewSerie()
96 {
97    ListDicomDirSerieElem const &elemList = 
98       Global::GetDicomDirElements()->GetDicomDirSerieElements();   
99
100    DicomDirSerie* st = new DicomDirSerie();
101    FillObject(elemList);
102    Series.push_front(st);
103
104    return st;  
105 }   
106 //-----------------------------------------------------------------------------
107 // Protected
108
109 //-----------------------------------------------------------------------------
110 // Private
111
112 //-----------------------------------------------------------------------------
113 } // end namespace gdcm
114