Updated wrappers.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -66,6 +66,7 @@ CXXFILES =\
|
||||
Multisample.cpp\
|
||||
Node.cpp\
|
||||
NodeCallback.cpp\
|
||||
NodeTrackerCallback.cpp\
|
||||
NodeVisitor.cpp\
|
||||
Notify.cpp\
|
||||
Object.cpp\
|
||||
|
||||
40
src/osgWrappers/osg/NodeTrackerCallback.cpp
Normal file
40
src/osgWrappers/osg/NodeTrackerCallback.cpp
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user