~saiarcot895/ubuntu/trusty/openscenegraph/armhf-support

« back to all changes in this revision

Viewing changes to OpenSceneGraph/include/osg/ApplicationUsage

  • Committer: Bazaar Package Importer
  • Author(s): Loic Dachary (OuoU)
  • Date: 2009-03-23 14:08:20 UTC
  • mfrom: (1.1.7 upstream) (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090323140820-i4j3jozdlhyn4lre
rules prevent lib64 with -D LIB_POSTFIX="" (Closes: #517671)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
        enum Type
45
45
        {
 
46
            NO_HELP = 0x0,
46
47
            COMMAND_LINE_OPTION = 0x1,
47
48
            ENVIRONMENTAL_VARIABLE = 0x2,
48
 
            KEYBOARD_MOUSE_BINDING = 0x4
 
49
            KEYBOARD_MOUSE_BINDING = 0x4,
 
50
            HELP_ALL = KEYBOARD_MOUSE_BINDING|ENVIRONMENTAL_VARIABLE|COMMAND_LINE_OPTION
49
51
        };
50
52
        
51
53
        void addUsageExplanation(Type type,const std::string& option,const std::string& explanation);