OpenSceneGraph/src/osgPlugins/osgParticle/IO_LinearInterpolator.cpp
2002-08-20 11:27:08 +00:00

29 lines
728 B
C++

#include <osgParticle/LinearInterpolator>
#include <osgDB/Registry>
#include <osgDB/Input>
#include <osgDB/Output>
bool LinearInterpolator_readLocalData(osg::Object &obj, osgDB::Input &fr);
bool LinearInterpolator_writeLocalData(const osg::Object &obj, osgDB::Output &fw);
osgDB::RegisterDotOsgWrapperProxy LinearInterpolator_Proxy
(
osgNew osgParticle::LinearInterpolator,
"LinearInterpolator",
"Object Interpolator LinearInterpolator",
LinearInterpolator_readLocalData,
LinearInterpolator_writeLocalData
);
bool LinearInterpolator_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool LinearInterpolator_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}