76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
|
*
|
|
* This library is open source and may be redistributed and/or modified under
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* OpenSceneGraph Public License for more details.
|
|
*/
|
|
|
|
#include <osgViewer/CompositeViewer>
|
|
|
|
using namespace osgViewer;
|
|
|
|
CompositeViewer::CompositeViewer()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::Viewer() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
CompositeViewer::~CompositeViewer()
|
|
{
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
void CompositeViewer::frameAdvance()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameAdvance() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::frameEventTraversal()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameEventTraversal() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::frameUpdateTraversal()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameUpdateTraversal() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::frameCullTraversal()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameCullTraversal() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::frameDrawTraversal()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameDrawTraversal() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::releaseAllGLObjects()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::releaseAllGLObjects() not implemented yet."<<std::endl;
|
|
}
|
|
|
|
void CompositeViewer::cleanup()
|
|
{
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::cleanup() not implemented yet."<<std::endl;
|
|
}
|
|
|