Updated wrappers.

This commit is contained in:
Robert Osfield
2006-05-02 09:50:00 +00:00
parent 03c0c856f3
commit 67f56dfd77
7 changed files with 41 additions and 7 deletions

View File

@@ -41,7 +41,8 @@ BEGIN_OBJECT_REFLECTOR(osg::Group)
I_Method1(bool, addChild, IN, osg::Node *, child);
I_Method2(bool, insertChild, IN, unsigned int, index, IN, osg::Node *, child);
I_Method1(bool, removeChild, IN, osg::Node *, child);
I_MethodWithDefaults2(bool, removeChild, IN, unsigned int, pos, , IN, unsigned int, numChildrenToRemove, 1);
I_Method1(bool, removeChild, IN, unsigned int, pos);
I_Method2(bool, removeChildren, IN, unsigned int, pos, IN, unsigned int, numChildrenToRemove);
I_Method2(bool, replaceChild, IN, osg::Node *, origChild, IN, osg::Node *, newChild);
I_Method0(unsigned int, getNumChildren);
I_Method2(bool, setChild, IN, unsigned int, i, IN, osg::Node *, node);