#include #include #include #include #include #include #include #include #include #include #include bool RayTracedTechnique_readLocalData(osg::Object &obj, osgDB::Input &fr); bool RayTracedTechnique_writeLocalData(const osg::Object &obj, osgDB::Output &fw); osgDB::RegisterDotOsgWrapperProxy RayTracedTechnique_Proxy ( new osgVolume::RayTracedTechnique, "RayTracedTechnique", "RayTracedTechnique Object", RayTracedTechnique_readLocalData, RayTracedTechnique_writeLocalData ); bool RayTracedTechnique_readLocalData(osg::Object& obj, osgDB::Input &fr) { //osgVolume::RayTracedTechnique& st = static_cast(obj); bool itrAdvanced = false; return itrAdvanced; } bool RayTracedTechnique_writeLocalData(const osg::Object& obj, osgDB::Output& fw) { //const osgVolume::RayTracedTechnique& st = static_cast(obj); return true; }