#include </home/zeitlin/src/wx/github/interface/wx/object.h>
This class is used to manage reference-counting providing a simple interface and a counter.
wxRefCounter can be easily used together with wxObjectDataPtr<T> to ensure that no calls to wxRefCounter::DecRef() are missed - thus avoiding memory leaks.
wxObjectRefData is a typedef to wxRefCounter and is used as the built-in reference counted storage for wxObject-derived classes.
Public Member Functions | |
wxRefCounter () | |
Default constructor. | |
void | DecRef () |
Decrements the reference count associated with this shared data and, if it reaches zero, destroys this instance of wxRefCounter releasing its memory. | |
int | GetRefCount () const |
Returns the reference count associated with this shared data. | |
void | IncRef () |
Increments the reference count associated with this shared data. | |
Protected Member Functions | |
virtual | ~wxRefCounter () |
Destructor. |
virtual wxRefCounter::~wxRefCounter | ( | ) | [protected, virtual] |
Destructor.
It's declared protected
so that wxRefCounter instances will never be destroyed directly but only as result of a DecRef() call.
wxRefCounter::wxRefCounter | ( | ) |
Default constructor.
Initialises the internal reference count to 1.
void wxRefCounter::DecRef | ( | ) |
Decrements the reference count associated with this shared data and, if it reaches zero, destroys this instance of wxRefCounter releasing its memory.
Please note that after calling this function, the caller should absolutely avoid to use the pointer to this instance since it may not be valid anymore.
int wxRefCounter::GetRefCount | ( | ) | const |
Returns the reference count associated with this shared data.
When this goes to zero during a DecRef() call, the object will auto-free itself.
void wxRefCounter::IncRef | ( | ) |
Increments the reference count associated with this shared data.