Public Member Functions | |
| ChildrenListEntry (void) | |
| ChildrenListEntry (bool active, PriorityType prio) | |
| bool | getActive (void) const |
| void | setActive (bool active) |
| PriorityType | getPriority (void) const |
| void | setPriority (PriorityType prio) |
Private Attributes | |
| bool | _active |
| PriorityType | _priority |
Definition at line 127 of file OSGChildrenList.h.
| osg::ChildrenList::ChildrenListEntry::ChildrenListEntry | ( | void | ) | [inline] |
| osg::ChildrenList::ChildrenListEntry::ChildrenListEntry | ( | bool | active, | |
| PriorityType | prio | |||
| ) | [inline] |
| bool osg::ChildrenList::ChildrenListEntry::getActive | ( | void | ) | const [inline] |
Definition at line 67 of file OSGChildrenList.inl.
References _active.
00068 { 00069 return _active; 00070 }
| void osg::ChildrenList::ChildrenListEntry::setActive | ( | bool | active | ) | [inline] |
Definition at line 73 of file OSGChildrenList.inl.
References _active.
00074 { 00075 _active = active; 00076 }
| ChildrenList::PriorityType osg::ChildrenList::ChildrenListEntry::getPriority | ( | void | ) | const [inline] |
Definition at line 79 of file OSGChildrenList.inl.
References _priority.
00080 { 00081 return _priority; 00082 }
| void osg::ChildrenList::ChildrenListEntry::setPriority | ( | PriorityType | prio | ) | [inline] |
Definition at line 85 of file OSGChildrenList.inl.
References _priority.
00086 { 00087 _priority = prio; 00088 }
bool osg::ChildrenList::ChildrenListEntry::_active [private] |
1.5.5