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 65 of file ScopedArray.h.
madara::utility::ScopedArray< T >::Shim::Shim | ( | T * | t | ) |
Constructor.
Definition at line 124 of file ScopedArray.inl.
madara::utility::ScopedArray< T >::Shim::~Shim | ( | void | ) |
Destructor.
Definition at line 130 of file ScopedArray.inl.
int madara::utility::ScopedArray< T >::Shim::refcount_ |
Current value of the reference count.
Definition at line 77 of file ScopedArray.h.
T* madara::utility::ScopedArray< T >::Shim::t_ |
Pointer to the object that's being reference counted.
Definition at line 74 of file ScopedArray.h.