wibble 1.1
|
#include <options.h>
Public Member Functions | |
bool | boolValue () const |
const std::vector< typename T::value_type > & | values () const |
![]() | |
Option () | |
virtual | ~Option () |
bool | isSet () const |
const std::string & | name () const |
void | addAlias (char c) |
void | addAlias (const std::string &str) |
const std::string & | fullUsage () const |
Return a full usage message including all the aliases for this option. | |
std::string | fullUsageForMan () const |
![]() | |
virtual | ~Managed () |
Protected Member Functions | |
VectorOption (const std::string &name) | |
VectorOption (const std::string &name, char shortName, const std::string &longName, const std::string &usage=std::string(), const std::string &description=std::string()) | |
ArgList::iterator | parse (ArgList &list, ArgList::iterator begin) |
Parse the next commandline parameter after the short form of the command has been found. | |
bool | parse (const std::string ¶m) |
Parse the commandline parameter of a long commandline switch. | |
void | parse_noarg () |
Notify that the option is present in the command line, but has no arguments. | |
![]() | |
Option (const std::string &name) | |
Option (const std::string &name, char shortName, const std::string &longName, const std::string &usage=std::string(), const std::string &description=std::string()) | |
virtual bool | arg_is_optional () const |
Return true if the argument to this function can be omitted. | |
Friends | |
class | OptionGroup |
class | Engine |
Additional Inherited Members | |
![]() | |
std::vector< char > | shortNames |
std::vector< std::string > | longNames |
std::string | usage |
std::string | description |
bool | hidden |
![]() | |
bool | m_isset |
|
inlineprotected |
References wibble::commandline::Option::usage.
|
inlineprotected |
References wibble::commandline::Option::usage.
|
inline |
|
inlineprotectedvirtual |
Parse the next commandline parameter after the short form of the command has been found.
It may or may not remove the parameter from the list, depending on if the option wants a value or not.
Signal that the option has been found, with the given argument (or 0 if no argument).
Implements wibble::commandline::Option.
References wibble::commandline::ArgList::eraseAndAdvance(), and wibble::commandline::Option::m_isset.
|
inlineprotectedvirtual |
Parse the commandline parameter of a long commandline switch.
Implements wibble::commandline::Option.
References wibble::commandline::Option::m_isset.
|
inlineprotectedvirtual |
Notify that the option is present in the command line, but has no arguments.
Implements wibble::commandline::Option.
|
inline |
|
friend |