Files
OpenSceneGraph/src/osgPlugins/osgParticle/IO_PointPlacer.cpp
Robert Osfield 00cc3a1833 Converted the instance of osgNew and osgDelete back to new and delete as part
of depecating the include/osg/MemoryManager
2002-12-16 13:40:58 +00:00

29 lines
657 B
C++

#include <osgParticle/PointPlacer>
#include <osgDB/Registry>
#include <osgDB/Input>
#include <osgDB/Output>
bool PointPlacer_readLocalData(osg::Object &obj, osgDB::Input &fr);
bool PointPlacer_writeLocalData(const osg::Object &obj, osgDB::Output &fw);
osgDB::RegisterDotOsgWrapperProxy PointPlacer_Proxy
(
new osgParticle::PointPlacer,
"PointPlacer",
"Object Placer CenteredPlacer PointPlacer",
PointPlacer_readLocalData,
PointPlacer_writeLocalData
);
bool PointPlacer_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool PointPlacer_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}