Added dummy virtual method implementations

This commit is contained in:
Robert Osfield 2006-11-29 11:00:02 +00:00
parent 3f0c9caa48
commit 35cb04437d
2 changed files with 88 additions and 1 deletions

View File

@ -17,8 +17,50 @@ using namespace osgViewer;
CompositeViewer::CompositeViewer() CompositeViewer::CompositeViewer()
{ {
osg::notify(osg::NOTICE)<<"CompositeViewer::Viewer() not implemented yet."<<std::endl;
} }
CompositeViewer::~CompositeViewer() CompositeViewer::~CompositeViewer()
{ {
} }
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;
}

View File

@ -6,7 +6,10 @@
* included with this distribution, and on the openscenegraph.org website. * included with this distribution, and on the openscenegraph.org website.
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY
{
}
without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* OpenSceneGraph Public License for more details. * OpenSceneGraph Public License for more details.
*/ */
@ -17,8 +20,50 @@ using namespace osgViewer;
Viewer::Viewer() Viewer::Viewer()
{ {
osg::notify(osg::NOTICE)<<"Viewer::Viewer() not implemented yet."<<std::endl;
} }
Viewer::~Viewer() Viewer::~Viewer()
{ {
} }
void Viewer::frame()
{
osg::notify(osg::NOTICE)<<"Viewer::frame() not implemented yet."<<std::endl;
}
void Viewer::frameAdvance()
{
osg::notify(osg::NOTICE)<<"Viewer::frameAdvance() not implemented yet."<<std::endl;
}
void Viewer::frameEventTraversal()
{
osg::notify(osg::NOTICE)<<"Viewer::frameEventTraversal() not implemented yet."<<std::endl;
}
void Viewer::frameUpdateTraversal()
{
osg::notify(osg::NOTICE)<<"Viewer::frameUpdateTraversal() not implemented yet."<<std::endl;
}
void Viewer::frameCullTraversal()
{
osg::notify(osg::NOTICE)<<"Viewer::frameCullTraversal() not implemented yet."<<std::endl;
}
void Viewer::frameDrawTraversal()
{
osg::notify(osg::NOTICE)<<"Viewer::frameDrawTraversal() not implemented yet."<<std::endl;
}
void Viewer::releaseAllGLObjects()
{
osg::notify(osg::NOTICE)<<"Viewer::releaseAllGLObjects() not implemented yet."<<std::endl;
}
void Viewer::cleanup()
{
osg::notify(osg::NOTICE)<<"Viewer::cleanup() not implemented yet."<<std::endl;
}