MADARA
3.1.8
|
A shim class that keeps track of the reference count and a pointer to the type T that's reference counted. More...
Public Member Functions | |
Shim (T *t) | |
Constructor. More... | |
~Shim (void) | |
Destructor. More... | |
Public Attributes | |
int | refcount_ |
Current value of the reference count. More... | |
T * | t_ |
Pointer to the object that's being reference counted. More... | |
A shim class that keeps track of the reference count and a pointer to the type T that's reference counted.
Definition at line 76 of file Refcounter.h.
madara::utility::Refcounter< T >::Shim::Shim | ( | T * | t | ) |
Constructor.
Definition at line 153 of file Refcounter.cpp.
madara::utility::Refcounter< T >::Shim::~Shim | ( | void | ) |
Destructor.
Definition at line 159 of file Refcounter.cpp.
int madara::utility::Refcounter< T >::Shim::refcount_ |
Current value of the reference count.
Definition at line 88 of file Refcounter.h.
T* madara::utility::Refcounter< T >::Shim::t_ |
Pointer to the object that's being reference counted.
Definition at line 85 of file Refcounter.h.