X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmBase.h;h=becd59bb2c2a34dea002ca3087ae746279bb21eb;hb=56ad78cdf3b5de32f0a94a38cd32ddc9f403ffc3;hp=c8151f2d6779c081d5e5a397200099596ef1bfb8;hpb=1e670813be403bc4ecd88fb78405d0a8969fca6c;p=gdcm.git diff --git a/src/gdcmBase.h b/src/gdcmBase.h index c8151f2d..becd59bb 100644 --- a/src/gdcmBase.h +++ b/src/gdcmBase.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmBase.h,v $ Language: C++ - Date: $Date: 2005/09/02 07:10:03 $ - Version: $Revision: 1.7 $ + Date: $Date: 2007/10/04 17:50:42 $ + Version: $Revision: 1.13 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -16,17 +16,17 @@ =========================================================================*/ -#ifndef GDCMBASE_H -#define GDCMBASE_H +#ifndef _GDCMBASE_H_ +#define _GDCMBASE_H_ #include "gdcmCommon.h" #include -namespace gdcm +namespace GDCM_NAME_SPACE { //----------------------------------------------------------------------------- /** - * \brief Base class of all gdcm classes + * \brief Base class of all gdcm classes. * Contains the Print related methods : * - Print * - SetPrintLevel / GetPrintLevel @@ -34,11 +34,13 @@ namespace gdcm class GDCM_EXPORT Base { public: - Base( ); - virtual ~Base(); - - virtual void Print(std::ostream &os = std::cout, - std::string const & indent = "" ); + /// \brief Constructor + Base( ) : PrintLevel(0) { } + /// \brief Canonical Destructor + virtual ~Base() {} + /// \brief Printer + virtual void Print(std::ostream & = std::cout, + std::string const & = "" ) {}; /// \brief Sets the print level for the Dicom Header Elements /// \note 0 for Light Print; 1 for 'medium' Print, 2 for Heavy Print