![]() |
Public API Reference |
![]() |
This is a class which provides basic reference-counting semantics. More...
#include <csutil/refcount.h>
Public Member Functions | |
void | DecRef () |
Decrease the number of references to this object. | |
int | GetRefCount () const |
Get the reference count (only for debugging). | |
void | IncRef () |
Increase the number of references to this object. | |
FastRefCount () | |
Initialize object and set reference to 1. | |
FastRefCount (const FastRefCount &other) | |
Initialize object and set reference to 1. |
This is a class which provides basic reference-counting semantics.
It can be used in conjunction with the smart pointer template class csRef (see <ref.h>). This class itself provides no functionality beyond reference counting. It is intended that you should subclass FastRefCount and add needed functionality.
This class has slightly less overhead than csRefCount, but is also less generally useable:
Definition at line 108 of file refcount.h.
CS::Utility::FastRefCount< ActualClass >::FastRefCount | ( | ) | [inline] |
Initialize object and set reference to 1.
Definition at line 121 of file refcount.h.
CS::Utility::FastRefCount< ActualClass >::FastRefCount | ( | const FastRefCount< ActualClass > & | other | ) | [inline] |
Initialize object and set reference to 1.
Definition at line 125 of file refcount.h.
void CS::Utility::FastRefCount< ActualClass >::DecRef | ( | ) | [inline] |
Decrease the number of references to this object.
Definition at line 138 of file refcount.h.
int CS::Utility::FastRefCount< ActualClass >::GetRefCount | ( | ) | const [inline] |
Get the reference count (only for debugging).
Definition at line 146 of file refcount.h.
void CS::Utility::FastRefCount< ActualClass >::IncRef | ( | ) | [inline] |
Increase the number of references to this object.
Definition at line 132 of file refcount.h.