Build fixes
This commit is contained in:
@@ -28,6 +28,11 @@ void CompositeViewer::init()
|
||||
{
|
||||
}
|
||||
|
||||
void CompositeViewer::addView(osgViewer::View* view)
|
||||
{
|
||||
osg::notify(osg::NOTICE)<<"CompositeViewer::addView(View*) not implemented yet."<<std::endl;
|
||||
}
|
||||
|
||||
void CompositeViewer::frame()
|
||||
{
|
||||
osg::notify(osg::NOTICE)<<"CompositeViewer::frame() not implemented yet."<<std::endl;
|
||||
|
||||
@@ -24,10 +24,6 @@ Scene::Scene():
|
||||
|
||||
_updateVisitor = new osgUtil::UpdateVisitor;
|
||||
_updateVisitor->setFrameStamp(_frameStamp.get());
|
||||
|
||||
_eventQueue = new osgGA::EventQueue;
|
||||
|
||||
_eventVisitor = new osgGA::EventVisitor;
|
||||
|
||||
setDatabasePager(new osgDB::DatabasePager);
|
||||
}
|
||||
@@ -36,6 +32,12 @@ Scene::~Scene()
|
||||
{
|
||||
}
|
||||
|
||||
void Scene::init()
|
||||
{
|
||||
osg::notify(osg::NOTICE)<<"Scene::init() not implementated yet."<<std::endl;
|
||||
}
|
||||
|
||||
|
||||
void Scene::setSceneData(osg::Node* node)
|
||||
{
|
||||
_sceneData = node;
|
||||
@@ -62,6 +64,11 @@ void Scene::setDatabasePager(osgDB::DatabasePager* dp)
|
||||
_databasePager = dp;
|
||||
}
|
||||
|
||||
void Scene::addEventHandler(osgGA::GUIEventHandler*)
|
||||
{
|
||||
osg::notify(osg::NOTICE)<<"Scene::addEventHandler() not implementated yet."<<std::endl;
|
||||
}
|
||||
|
||||
void Scene::frameAdvance()
|
||||
{
|
||||
// double previousTime = _frameStamp->getReferenceTime();
|
||||
|
||||
Reference in New Issue
Block a user