X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmBase.h;h=8d88bf50d393d17cd66643fdfa442a9bb24237f5;hb=c2975ffb8c79fa4d745368d8d1c317c5a313dd0a;hp=9304052d264b78241cb6940be52c92bb934e4fce;hpb=c094e185dd6404df031524ccae8e1b51e3b84871;p=gdcm.git diff --git a/src/gdcmBase.h b/src/gdcmBase.h index 9304052d..8d88bf50 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/01/21 11:40:55 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/10/23 15:32:30 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,8 +26,7 @@ namespace gdcm { //----------------------------------------------------------------------------- /** - * \brief Base class of all gdcm classes - * + * \brief Base class of all gdcm classes. * Contains the Print related methods : * - Print * - SetPrintLevel / GetPrintLevel @@ -35,17 +34,20 @@ 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 - void SetPrintLevel(int level) { PrintLevel = level; }; + /// \note 0 for Light Print; 1 for 'medium' Print, 2 for Heavy Print + void SetPrintLevel(int level) { PrintLevel = level; } /// \brief Gets the print level for the Dicom Entries - int GetPrintLevel() { return PrintLevel; }; + int GetPrintLevel() { return PrintLevel; } protected: /// \brief Amount of printed details for each Dicom Entries :