]> Creatis software - gdcm.git/blobdiff - src/gdcmBase.h
Fix mistypings
[gdcm.git] / src / gdcmBase.h
index 455897303e5227a9ad37e9f97f35b8065c996af9..becd59bb2c2a34dea002ca3087ae746279bb21eb 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmBase.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/11 15:15:37 $
-  Version:   $Revision: 1.2 $
+  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
                                                                                 
 =========================================================================*/
 
-#ifndef GDCMBASE_H
-#define GDCMBASE_H
+#ifndef _GDCMBASE_H_
+#define _GDCMBASE_H_
 
 #include "gdcmCommon.h"
 #include <iostream>
 
-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 
@@ -35,20 +34,23 @@ namespace gdcm
 class GDCM_EXPORT Base
 {
 public:
-   Base( );
-   virtual ~Base();
-
-   virtual void Print(std::ostream &os = std::cout); 
+   /// \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 Header Elements
-   int GetPrintLevel() { return PrintLevel; };
+   /// \brief Gets the print level for the Dicom Entries
+   int GetPrintLevel() { return PrintLevel; }
 
 protected:
-   /// \brief Amount of printed details for each Header Entry (Dicom Element):
+   /// \brief Amount of printed details for each Dicom Entries :
    /// 0 : stands for the least detail level.
    int PrintLevel;
 };