Files
OpenSceneGraph/src/osgPlugins/osgParticle/IO_Program.cpp

29 lines
630 B
C++

#include <osgParticle/Program>
#include <osgDB/Registry>
#include <osgDB/Input>
#include <osgDB/Output>
bool IOProgram_readLocalData(osg::Object &obj, osgDB::Input &fr);
bool IOProgram_writeLocalData(const osg::Object &obj, osgDB::Output &fw);
osgDB::RegisterDotOsgWrapperProxy g_IOProgramProxy
(
0,
"osgParicle::Program",
"Object Node ParticleProcessor osgParicle::Program",
IOProgram_readLocalData,
IOProgram_writeLocalData
);
bool IOProgram_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool IOProgram_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}