Public Member Functions | |
| StateRefCount (const StateRefCount &source) | |
| StateRefCount (const StateStoreIt &itState) | |
| StateRefCount (const StateStoreIt &itState, Int32 refCount) | |
| StateStoreIt | getState (void) const |
| void | setState (const StateStoreIt &itState) |
| Int32 | getRefCount (void) const |
| void | incRefCount (Int32 inc=1) |
| void | decRefCount (Int32 dec=1) |
Private Attributes | |
| StateStoreIt | _itState |
| Int32 | _refCount |
Definition at line 168 of file OSGDepthFirstStateAction.h.
|
|
Copy constructor. Dev:
Definition at line 223 of file OSGDepthFirstStateAction.inl.
|
|
|
Constructor. Dev: The ref count is initalized to 0. Definition at line 237 of file OSGDepthFirstStateAction.inl.
|
|
||||||||||||
|
Constructor. Definition at line 247 of file OSGDepthFirstStateAction.inl.
|
|
|
Return the state store iterator. Definition at line 259 of file OSGDepthFirstStateAction.inl. References _itState. 00260 { 00261 return _itState; 00262 }
|
|
|
Set the state store iterator. Definition at line 268 of file OSGDepthFirstStateAction.inl. References _itState. 00269 { 00270 _itState = itState; 00271 }
|
|
|
Return the ref count. Definition at line 277 of file OSGDepthFirstStateAction.inl. References _refCount. 00278 { 00279 return _refCount; 00280 }
|
|
|
Increment the ref count. Definition at line 286 of file OSGDepthFirstStateAction.inl. References _refCount. 00287 { 00288 _refCount += inc; 00289 }
|
|
|
Decrement the ref count. Definition at line 295 of file OSGDepthFirstStateAction.inl. References _refCount. 00296 { 00297 _refCount -= dec; 00298 }
|
|
|
Definition at line 185 of file OSGDepthFirstStateAction.h. Referenced by getState(), and setState(). |
|
|
Definition at line 186 of file OSGDepthFirstStateAction.h. Referenced by decRefCount(), getRefCount(), and incRefCount(). |
1.4.3