Refactored the old style .osg plugin support so that the DotOsgWrappers are placed in their own dedicated plugins found in src/osgWrappers/deprecated_osg

This commit is contained in:
Robert Osfield
2010-01-19 12:26:37 +00:00
parent b169d42ce8
commit 995398441e
201 changed files with 48 additions and 12388 deletions

View File

@@ -0,0 +1,28 @@
#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,
"osgParticle::Program",
"Object Node ParticleProcessor osgParticle::Program",
IOProgram_readLocalData,
IOProgram_writeLocalData
);
bool IOProgram_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool IOProgram_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}