Updated wrappers.

This commit is contained in:
Robert Osfield
2005-10-24 13:49:19 +00:00
parent fe1536ebd6
commit 51f74bd37a
3 changed files with 45 additions and 0 deletions

View File

@@ -351,6 +351,10 @@ SOURCE=..\..\..\src\osgWrappers\osg\Node.cpp
SOURCE=..\..\..\src\osgWrappers\osg\NodeCallback.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\osgWrappers\osg\NodeTrackerCallback.cpp
# End Source File
# Begin Source File
SOURCE=..\..\..\src\osgWrappers\osg\NodeVisitor.cpp
# End Source File

View File

@@ -66,6 +66,7 @@ CXXFILES =\
Multisample.cpp\
Node.cpp\
NodeCallback.cpp\
NodeTrackerCallback.cpp\
NodeVisitor.cpp\
Notify.cpp\
Object.cpp\

View File

@@ -0,0 +1,40 @@
// ***************************************************************************
//
// Generated automatically by genwrapper.
// Please DO NOT EDIT this file!
//
// ***************************************************************************
#include <osgIntrospection/ReflectionMacros>
#include <osgIntrospection/TypedMethodInfo>
#include <osgIntrospection/Attributes>
#include <osg/Node>
#include <osg/NodeTrackerCallback>
#include <osg/NodeVisitor>
#include <osg/RefNodePath>
// Must undefine IN and OUT macros defined in Windows headers
#ifdef IN
#undef IN
#endif
#ifdef OUT
#undef OUT
#endif
BEGIN_OBJECT_REFLECTOR(osg::NodeTrackerCallback)
I_BaseType(osg::NodeCallback);
I_Constructor0();
I_Method1(void, setTrackNodePath, IN, const osg::RefNodePath &, nodePath);
I_Method1(void, setTrackNodePath, IN, const osg::NodePath &, nodePath);
I_Method0(osg::RefNodePath &, getTrackNodePath);
I_Method0(const osg::RefNodePath &, getTrackNodePath);
I_Method1(void, setTrackNode, IN, osg::Node *, node);
I_Method0(osg::Node *, getTrackNode);
I_Method0(const osg::Node *, getTrackNode);
I_Method1(void, update, IN, osg::Node &, node);
I_Method0(bool, validateNodePath);
I_Property(osg::Node *, TrackNode);
I_Property(const osg::RefNodePath &, TrackNodePath);
END_REFLECTOR