Public Member Functions | |
| ChildrenListEntry (void) | |
| ChildrenListEntry (const NodePtr &pNode) | |
| ChildrenListEntry (const NodePtr &pNode, PriorityType prio) | |
| NodePtr | getNode (void) const |
| void | setNode (const NodePtr &pNode) |
| PriorityType | getPriority (void) const |
| void | setPriority (PriorityType prio) |
| bool | getActive (void) const |
| void | setActive (bool active) |
Private Attributes | |
| NodePtr | _pNode |
| PriorityType | _priority |
| bool | _active |
Definition at line 115 of file OSGExtraChildrenList.h.
|
|
Definition at line 51 of file OSGExtraChildrenList.inl. 00052 : _pNode (NullFC ), 00053 _priority(PriorityTypeTraits::getZeroElement()), 00054 _active (false ) 00055 { 00056 }
|
|
|
Definition at line 59 of file OSGExtraChildrenList.inl. 00060 : _pNode (pNode ), 00061 _priority(PriorityTypeTraits::getZeroElement()), 00062 _active (true ) 00063 { 00064 }
|
|
||||||||||||
|
Definition at line 67 of file OSGExtraChildrenList.inl.
|
|
|
Definition at line 77 of file OSGExtraChildrenList.inl. References _pNode. 00078 { 00079 return _pNode; 00080 }
|
|
|
Definition at line 83 of file OSGExtraChildrenList.inl. References _pNode. 00084 { 00085 _pNode = pNode; 00086 }
|
|
|
Definition at line 89 of file OSGExtraChildrenList.inl. References _priority. 00090 { 00091 return _priority; 00092 }
|
|
|
Definition at line 95 of file OSGExtraChildrenList.inl. References _priority. 00096 { 00097 _priority = prio; 00098 }
|
|
|
Definition at line 101 of file OSGExtraChildrenList.inl. References _active. 00102 { 00103 return _active; 00104 }
|
|
|
Definition at line 107 of file OSGExtraChildrenList.inl. References _active. 00108 { 00109 _active = active; 00110 }
|
|
|
Definition at line 132 of file OSGExtraChildrenList.h. |
|
|
Definition at line 133 of file OSGExtraChildrenList.h. Referenced by getPriority(), and setPriority(). |
|
|
Definition at line 134 of file OSGExtraChildrenList.h. Referenced by getActive(), and setActive(). |
1.4.3