From Marco Jez, improvements to osgIntrospection, and new automatically generated
osgWrappers/osg set.
This commit is contained in:
@@ -1,12 +1,61 @@
|
||||
// ***************************************************************************
|
||||
//
|
||||
// Generated automatically by genwrapper.
|
||||
// Please DO NOT EDIT this file!
|
||||
//
|
||||
// ***************************************************************************
|
||||
|
||||
#include <osgIntrospection/ReflectionMacros>
|
||||
#include <osgIntrospection/TypedMethodInfo>
|
||||
#include <osgIntrospection/Attributes>
|
||||
|
||||
#include <osg/BoundingBox>
|
||||
#include <osg/CopyOp>
|
||||
#include <osg/Drawable>
|
||||
#include <osg/Geode>
|
||||
#include <osg/NodeVisitor>
|
||||
#include <osg/Object>
|
||||
#include <osg/State>
|
||||
|
||||
using namespace osgIntrospection;
|
||||
TYPE_NAME_ALIAS(std::vector< osg::ref_ptr< osg::Drawable > >, osg::Geode::DrawableList);
|
||||
|
||||
BEGIN_OBJECT_REFLECTOR(osg::Geode)
|
||||
BaseType(osg::Node);
|
||||
ArrayPropertyWithReturnType(osg::Drawable *, Drawable, Drawables, bool);
|
||||
Constructor0();
|
||||
ConstructorWithDefaults2(IN, const osg::Geode &, x, , IN, const osg::CopyOp &, copyop, osg::CopyOp::SHALLOW_COPY);
|
||||
Method0(osg::Object *, cloneType);
|
||||
Method1(osg::Object *, clone, IN, const osg::CopyOp &, copyop);
|
||||
Method1(bool, isSameKindAs, IN, const osg::Object *, obj);
|
||||
Method0(const char *, className);
|
||||
Method0(const char *, libraryName);
|
||||
Method1(void, accept, IN, osg::NodeVisitor &, nv);
|
||||
Method1(bool, addDrawable, IN, osg::Drawable *, drawable);
|
||||
Method1(bool, removeDrawable, IN, osg::Drawable *, drawable);
|
||||
MethodWithDefaults2(bool, removeDrawable, IN, unsigned int, i, , IN, unsigned int, numDrawablesToRemove, 1);
|
||||
Method2(bool, replaceDrawable, IN, osg::Drawable *, origDraw, IN, osg::Drawable *, newDraw);
|
||||
Method2(bool, setDrawable, IN, unsigned int, i, IN, osg::Drawable *, drawable);
|
||||
Method0(unsigned int, getNumDrawables);
|
||||
Method1(osg::Drawable *, getDrawable, IN, unsigned int, i);
|
||||
Method1(const osg::Drawable *, getDrawable, IN, unsigned int, i);
|
||||
Method1(bool, containsDrawable, IN, const osg::Drawable *, gset);
|
||||
Method1(unsigned int, getDrawableIndex, IN, const osg::Drawable *, drawable);
|
||||
Method1(void, compileDrawables, IN, osg::State &, state);
|
||||
Method0(const osg::BoundingBox &, getBoundingBox);
|
||||
ReadOnlyProperty(const osg::BoundingBox &, BoundingBox);
|
||||
ArrayProperty_GSA(osg::Drawable *, Drawable, Drawables, unsigned int, bool);
|
||||
END_REFLECTOR
|
||||
|
||||
BEGIN_VALUE_REFLECTOR(osg::ref_ptr< osg::Drawable >)
|
||||
Constructor0();
|
||||
Constructor1(IN, osg::Drawable *, t);
|
||||
Constructor1(IN, const osg::ref_ptr< osg::Drawable > &, rp);
|
||||
Method0(bool, valid);
|
||||
Method0(osg::Drawable *, get);
|
||||
Method0(const osg::Drawable *, get);
|
||||
Method0(osg::Drawable *, take);
|
||||
Method0(osg::Drawable *, release);
|
||||
ReadOnlyProperty(osg::Drawable *, );
|
||||
END_REFLECTOR
|
||||
|
||||
STD_VECTOR_REFLECTOR(std::vector< osg::ref_ptr< osg::Drawable > >);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user