OpenSceneGraph/src/osgPlugins/osgParticle/IO_RandomRateCounter.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

31 lines
750 B
C++

#include <osgParticle/RandomRateCounter>
#include <iostream>
#include <osgDB/Registry>
#include <osgDB/Input>
#include <osgDB/Output>
bool RandomRateCounter_readLocalData(osg::Object &obj, osgDB::Input &fr);
bool RandomRateCounter_writeLocalData(const osg::Object &obj, osgDB::Output &fw);
osgDB::RegisterDotOsgWrapperProxy RandomRateCounter_Proxy
(
new osgParticle::RandomRateCounter,
"RandomRateCounter",
"Object Counter VariableRateCounter RandomRateCounter",
RandomRateCounter_readLocalData,
RandomRateCounter_writeLocalData
);
bool RandomRateCounter_readLocalData(osg::Object &, osgDB::Input &)
{
return false;
}
bool RandomRateCounter_writeLocalData(const osg::Object &, osgDB::Output &)
{
return false;
}