#include <ParmParse.H>
Public Methods | |
PP_UseCount () | |
: Construct a PP_UseCount initialized to one. | |
PP_UseCount (const PP_UseCount &rhs) | |
: The copy constructor -- bumps reference count. | |
PP_UseCount & | operator= (const PP_UseCount &rhs) |
~PP_UseCount () | |
: The destructor -- decrements the reference count. | |
bool | unique () const |
: The PP_UseCount is unique if the reference count == 1. | |
int | linkCount () const |
: Returns the reference count. |
|
: Construct a PP_UseCount initialized to one.
|
|
: The copy constructor -- bumps reference count.
|
|
: The destructor -- decrements the reference count.
|
|
: Returns the reference count.
|
|
: The assignment operator. Increments the reference count on rhs, decrements the reference count on this, and then makes this and rhs point to the same reference count. |
|
: The PP_UseCount is unique if the reference count == 1.
|