#include <RefCounted.h>
Inheritance diagram for OW32::CRefCountedBase:
Public Member Functions | |
CRefCountedBase () | |
Default constructor that creates an initial reference. | |
virtual | ~CRefCountedBase () |
Virtual d'tors are required. | |
virtual LONG | AddRef () const =0 |
Add a reference to the object. | |
virtual LONG | Release () const =0 |
Decrement the reference count of this object. | |
Protected Attributes | |
LONG | m_refCount |
The current reference count. |
|
Add a reference to the object.
Implemented in OW32::CRefCounted, and OW32::CRefCountedSingleThread. |
|
Decrement the reference count of this object.
Implemented in OW32::CRefCounted, and OW32::CRefCountedSingleThread. |