Public Member Functions | |
| NodeStackEntry (void) | |
| NodeStackEntry (const NodeStackEntry &source) | |
| NodeStackEntry (const NodePtr &pNode, const StateRefCountStoreIt &itStateRefCount, Int32 passCount) | |
| NodePtr | getNode (void) const |
| Int32 | getPassCount (void) const |
| void | setPassCount (Int32 passCount) |
| StateRefCountStoreIt | getStateRefCount (void) const |
| void | setStateRefCount (const StateRefCountStoreIt &itStateRefCount) |
Private Attributes | |
| NodePtr | _pNode |
| StateRefCountStoreIt | _itStateRefCount |
| Int32 | _passCount |
Definition at line 195 of file OSGDepthFirstStateAction.h.
|
|
Definition at line 303 of file OSGDepthFirstStateAction.inl. 00305 : _pNode (NullFC), 00306 _itStateRefCount( ), 00307 _passCount (0 ) 00308 { 00309 }
|
|
|
Definition at line 312 of file OSGDepthFirstStateAction.inl. 00315 : _pNode (source._pNode ), 00316 _itStateRefCount(source._itStateRefCount), 00317 _passCount (source._passCount ) 00318 { 00319 }
|
|
||||||||||||||||
|
Definition at line 322 of file OSGDepthFirstStateAction.inl. 00326 : _pNode (pNode ), 00327 _itStateRefCount(itStateRefCount), 00328 _passCount (passCount ) 00329 { 00330 }
|
|
|
Definition at line 333 of file OSGDepthFirstStateAction.inl. References _pNode. 00334 { 00335 return _pNode; 00336 }
|
|
|
Definition at line 339 of file OSGDepthFirstStateAction.inl. References _passCount. 00340 { 00341 return _passCount; 00342 }
|
|
|
Definition at line 345 of file OSGDepthFirstStateAction.inl. References _passCount. 00346 { 00347 _passCount = passCount; 00348 }
|
|
|
Definition at line 351 of file OSGDepthFirstStateAction.inl. References _itStateRefCount. 00352 { 00353 return _itStateRefCount; 00354 }
|
|
|
Definition at line 357 of file OSGDepthFirstStateAction.inl. References _itStateRefCount. 00359 { 00360 _itStateRefCount = itStateRefCount; 00361 }
|
|
|
Definition at line 213 of file OSGDepthFirstStateAction.h. Referenced by getNode(). |
|
|
Definition at line 214 of file OSGDepthFirstStateAction.h. Referenced by getStateRefCount(), and setStateRefCount(). |
|
|
Definition at line 215 of file OSGDepthFirstStateAction.h. Referenced by getPassCount(), and setPassCount(). |
1.4.3