~ubuntu-branches/debian/experimental/openscenegraph/experimental

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osg/ApplicationUsage.cpp

  • Committer: Package Import Robot
  • Author(s): Alberto Luaces Fernández
  • Date: 2014-08-01 20:41:55 UTC
  • mfrom: (1.4.4) (24.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20140801204155-ykq00e43h6eg0ms3
Tags: 3.2.1-1
* Acknowledge NMU.
* New upstream version.
* Removal of old patches.
* Confirmation that (LP: #1339264) is already closed.
* Removed obsolete conflict rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#include <string.h>
16
16
 
17
17
#include <osg/ApplicationUsage>
 
18
#include <osg/Object>
18
19
#include <osg/Math>
19
20
#include <osg/ref_ptr>
20
21
 
33
34
    return s_applicationUsage.get();
34
35
}
35
36
 
 
37
OSG_INIT_SINGLETON_PROXY(ApplicationUsageSingletonProxy, ApplicationUsage::instance())
 
38
 
36
39
void ApplicationUsage::addUsageExplanation(Type type,const std::string& option,const std::string& explanation)
37
40
{
38
41
    switch(type)
69
72
    {
70
73
        std::ostringstream ostr;
71
74
        ostr<<prefix;
72
 
        
 
75
 
73
76
        if (key==' ')
74
77
        {
75
78
            ostr<<"Space";