From Marco Jez, improvements to osgIntrospection, and new automatically generated

osgWrappers/osg set.
This commit is contained in:
Robert Osfield
2005-04-07 20:00:17 +00:00
parent 5b4482c70d
commit 7a27a0bef7
132 changed files with 8608 additions and 301 deletions

View File

@@ -0,0 +1,56 @@
// ***************************************************************************
//
// Generated automatically by genwrapper.
// Please DO NOT EDIT this file!
//
// ***************************************************************************
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/Attributes>
#include <osg/CopyOp>
#include <osg/Image>
#include <osg/ImageStream>
#include <osg/Object>
BEGIN_ENUM_REFLECTOR(osg::ImageStream::StreamStatus)
EnumLabel(osg::ImageStream::INVALID);
EnumLabel(osg::ImageStream::PLAYING);
EnumLabel(osg::ImageStream::PAUSED);
EnumLabel(osg::ImageStream::REWINDING);
END_REFLECTOR
BEGIN_ENUM_REFLECTOR(osg::ImageStream::LoopingMode)
EnumLabel(osg::ImageStream::NO_LOOPING);
EnumLabel(osg::ImageStream::LOOPING);
END_REFLECTOR
BEGIN_OBJECT_REFLECTOR(osg::ImageStream)
BaseType(osg::Image);
Constructor0();
ConstructorWithDefaults2(IN, const osg::ImageStream &, image, , 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 *, libraryName);
Method0(const char *, className);
Method1(int, compare, IN, const osg::Image &, rhs);
Method0(void, play);
Method0(void, pause);
Method0(void, rewind);
MethodWithDefaults1(void, quit, IN, bool, x, true);
Method0(osg::ImageStream::StreamStatus, getStatus);
Method1(void, setLoopingMode, IN, osg::ImageStream::LoopingMode, mode);
Method0(osg::ImageStream::LoopingMode, getLoopingMode);
Method1(void, setReferenceTime, IN, double, x);
Method0(double, getReferenceTime);
Method1(void, setTimeMultiplier, IN, double, x);
Method0(double, getTimeMultiplier);
Method0(void, update);
Property(osg::ImageStream::LoopingMode, LoopingMode);
Property(double, ReferenceTime);
ReadOnlyProperty(osg::ImageStream::StreamStatus, Status);
Property(double, TimeMultiplier);
END_REFLECTOR