]> Creatis software - gdcm.git/blob - src/gdcmBase.cxx
3a94b08b132ed79845ee31fc54f50abfafc78b6f
[gdcm.git] / src / gdcmBase.cxx
1   /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmBase.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/01 10:29:54 $
7   Version:   $Revision: 1.9 $
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 // Public
44
45 //-----------------------------------------------------------------------------
46 // Protected
47
48 //-----------------------------------------------------------------------------
49 // Private
50
51 //-----------------------------------------------------------------------------
52 // Print
53 /**
54  * \brief   Print all the object
55  * @param   os The output stream to be written to.
56  * @param indent Indentation string to be prepended during printing
57  */
58 void Base::Print(std::ostream &, std::string const & )
59 {
60 }
61
62 //-----------------------------------------------------------------------------
63 } // end namespace gdcm
64