#include #include #include #include #include #include #include #include #include #include #include bool Property_readLocalData(osg::Object &obj, osgDB::Input &fr); bool Property_writeLocalData(const osg::Object &obj, osgDB::Output &fw); osgDB::RegisterDotOsgWrapperProxy Property_Proxy ( new osgVolume::Property, "Property", "Object Property", Property_readLocalData, Property_writeLocalData ); osgDB::RegisterDotOsgWrapperProxy MaximumImageProjectionProperty_Proxy ( new osgVolume::MaximumIntensityProjectionProperty, "MaximumIntensityProjectionProperty", "Object MaximumIntensityProjectionProperty", Property_readLocalData, Property_writeLocalData ); osgDB::RegisterDotOsgWrapperProxy LightingProperty_Proxy ( new osgVolume::LightingProperty, "LightingProperty", "Object LightingProperty", Property_readLocalData, Property_writeLocalData ); bool Property_readLocalData(osg::Object& obj, osgDB::Input &fr) { return false; } bool Property_writeLocalData(const osg::Object& obj, osgDB::Output& fw) { return true; }