Added a bunch of files synched with 0.8.42
This commit is contained in:
23
src/osgPlugins/osg/Object.cpp
Normal file
23
src/osgPlugins/osg/Object.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#include "osg/Object"
|
||||
|
||||
#include "osgDB/Registry"
|
||||
#include "osgDB/Input"
|
||||
#include "osgDB/Output"
|
||||
|
||||
using namespace osg;
|
||||
using namespace osgDB;
|
||||
|
||||
// forward declare functions to use later.
|
||||
// bool Object_readLocalData(Object& obj, Input& fr);
|
||||
// bool Object_writeLocalData(const Object& obj, Output& fw);
|
||||
|
||||
// register the read and write functions with the osgDB::Registry.
|
||||
// note, Object doesn't currently require any read and write.
|
||||
RegisterDotOsgWrapperProxy g_ObjectProxy
|
||||
(
|
||||
/*new osg::Object*/NULL,
|
||||
"Object",
|
||||
"Object",
|
||||
NULL,
|
||||
NULL
|
||||
);
|
||||
Reference in New Issue
Block a user