]> Creatis software - gdcm.git/blobdiff - src/gdcmRefCounter.h
Fix mistypings
[gdcm.git] / src / gdcmRefCounter.h
index 23c96c0fa3c521632f0544fc5a0b6f31de1c8a6c..3ba30e23a00536c8bde2d166bb9e073782eea760 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmRefCounter.h,v $
   Language:  C++
-  Date:      $Date: 2005/10/21 07:38:00 $
-  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 GDCMREFCOUNTER_H
-#define GDCMREFCOUNTER_H
+#ifndef _GDCMREFCOUNTER_H_
+#define _GDCMREFCOUNTER_H_
 
 #include "gdcmBase.h"
-#include "gdcmDebug.h"
+//#include "gdcmDebug.h"
+#include <typeinfo>
 
-namespace gdcm 
+namespace GDCM_NAME_SPACE 
 {
 //-----------------------------------------------------------------------------
 /**
@@ -31,45 +32,38 @@ namespace gdcm
  */
 class GDCM_EXPORT RefCounter : public Base
 {
-public:
-   gdcmTypeMacro(RefCounter)
+   gdcmTypeMacro(RefCounter);
 
 public:
 // Allocator / Unallocator
-   /// Delete the object
+   /// \brief Delete the object
    /// \remarks The object is deleted only if its reference counting is to zero
-   inline virtual void Delete(void)
-   {
-      Unregister();
-   }
+   void Delete() { Unregister(); }
 
 // Reference count
-   /// Register the object
+   /// \brief Register the object
    /// \remarks It increments the reference counting
-   inline void Register(void)
-   {
-      RefCount++;
-   }
-   /// Unregister the object
+   void Register() { RefCount++; }
+
+   /// \brief Unregister the object
    /// \remarks It decrements the reference counting
-   inline void Unregister(void)
+   void Unregister()
    {
+//std::cout <<"================Unreg " << typeid(*this).name() << std::endl;
       RefCount--;
-      if(RefCount==0)
-      {
-         delete this;
-      }
+      if(RefCount<=0)
+        delete this;
    }
-   /// Get the reference counting
+   /// \brief Get the reference counting
    /// \return Reference count
-   inline const unsigned long &GetRefCount(void) const
+   const unsigned long &GetRefCount() const
    {
-      return(RefCount);
+      return RefCount;
    }
 
 protected:
    /// Constructor
-   RefCounter() { RefCount = 1; }
+   RefCounter() : RefCount(1) { }
    /// Destructor
    virtual ~RefCounter() {}