Added osgViewer::HelpHandler

This commit is contained in:
Robert Osfield
2007-02-12 13:39:18 +00:00
parent 4e97901622
commit fe177e42d5
13 changed files with 324 additions and 14 deletions

View File

@@ -1,5 +1,19 @@
/* -*-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 <osg/ApplicationUsage>
#include <osg/Math>
#include <osg/ref_ptr>
using namespace osg;
@@ -10,8 +24,8 @@ ApplicationUsage::ApplicationUsage(const std::string& commandLineUsage):
ApplicationUsage* ApplicationUsage::instance()
{
static ApplicationUsage s_applicationUsage;
return &s_applicationUsage;
static osg::ref_ptr<ApplicationUsage> s_applicationUsage = new ApplicationUsage;
return s_applicationUsage.get();
}
void ApplicationUsage::addUsageExplanation(Type type,const std::string& option,const std::string& explanation)