]> Creatis software - gdcm.git/blob - src/gdcmBase.cxx
Doxygenation
[gdcm.git] / src / gdcmBase.cxx
1   /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmBase.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/06 17:08:06 $
7   Version:   $Revision: 1.3 $
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 "gdcmBase.h"
20
21 namespace gdcm 
22 {
23 //-------------------------------------------------------------------------
24 // Constructor / Destructor
25 /**
26  * \brief canonical constructor
27  */
28 Base::Base( )
29 {
30    PrintLevel = 0;
31 }
32
33 /**
34  * \brief canonical destructor
35  * \note  If the Header was created by the File constructor,
36  *        it is destroyed by the File
37  */
38 Base::~Base()
39
40 }
41
42 //-----------------------------------------------------------------------------
43 // Print
44 /**
45  * \brief   Print all the object
46  * @param   os The output stream to be written to.
47  */
48 void Base::Print(std::ostream & os)
49 {
50 }
51
52 //-----------------------------------------------------------------------------
53 // Public
54
55 //-----------------------------------------------------------------------------
56 // Protected
57
58 //-----------------------------------------------------------------------------
59 // Private
60
61 //-----------------------------------------------------------------------------
62 } // end namespace gdcm
63