Files
OpenSceneGraph/src/osgFX/Registry.cpp
2005-04-29 06:32:13 +00:00

15 lines
207 B
C++

#include <osgFX/Registry>
using namespace osgFX;
Registry* Registry::instance()
{
static osg::ref_ptr<Registry> s_instance = new Registry;
return s_instance.get();
}
Registry::Registry()
{
}