|
osgEarth 2.1.1
|
#include <iostream>#include <osg/Notify>#include <osg/ArgumentParser>#include <osg/ApplicationUsage>#include <osgEarth/Version>#include <osgEarth/Registry>
Include dependency graph for osgearth_version.cpp:Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 29 of file osgearth_version.cpp.
{
osg::ArgumentParser arguments(&argc, argv);
arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName() + " [options]");
arguments.getApplicationUsage()->addCommandLineOption("-h or --help", "Display this information");
arguments.getApplicationUsage()->addCommandLineOption("--caps", "Print out system capabilities");
arguments.getApplicationUsage()->addCommandLineOption("--version-number", "Print out version number only");
arguments.getApplicationUsage()->addCommandLineOption("--major-number", "Print out major version number only");
arguments.getApplicationUsage()->addCommandLineOption("--minor-number", "Print out minor version number only");
arguments.getApplicationUsage()->addCommandLineOption("--patch-number", "Print out patch version number only");
arguments.getApplicationUsage()->addCommandLineOption("--so-number ", "Print out shared object version number only");
// if user request help write it out to cout.
if (arguments.read("-h") || arguments.read("--help"))
{
cout << arguments.getApplicationUsage()->getCommandLineUsage() << endl;
arguments.getApplicationUsage()->write(cout, arguments.getApplicationUsage()->getCommandLineOptions());
return 1;
}
if (arguments.read("--version-number"))
{
cout << osgEarthGetVersion() << endl;
return 0;
}
if (arguments.read("--major-number"))
{
cout << OSGEARTH_MAJOR_VERSION << endl;
return 0;
}
if (arguments.read("--minor-number"))
{
cout << OSGEARTH_MINOR_VERSION << endl;
return 0;
}
if (arguments.read("--patch-number"))
{
cout << OSGEARTH_PATCH_VERSION << endl;
return 0;
}
if (arguments.read("--soversion-number") || arguments.read("--so-number") )
{
cout << osgEarthGetSOVersion() << endl;
return 0;
}
cout << osgEarthGetLibraryName() << " " << osgEarthGetVersion() << endl << endl;
if ( arguments.read("--caps") )
{
osgEarth::setNotifyLevel( osg::INFO );
osgEarth::Registry::instance()->getCapabilities();
}
return 0;
}
Here is the call graph for this function:
1.7.3