returns KCmdLineOptions
|
|
|
Argument | Type | Default |
name | QByteArray | |
description | KLocalizedString | KLocalizedString() |
defaultValue | QByteArray | QByteArray() |
|
|
Add command line option, by providing its name, description, and
possibly a default value. These will print out when myapp --help
is called on the command line.
Note that if the option name begins with "no" that you will need to test
for the name without the "no" and the result will be the inverse of what
is specified. i.e. if "nofoo" is the name of the option and
myapp --nofoo is called:
KCmdLineArgs.parsedArgs()->isSet("foo"); // false
name - option name
description - option description, made available for translation;
can be left off
defaultValue - default option value, when the value is not specified
on the command line; can be left off
|