Home | History | Annotate | Download | only in libopt++

Lines Matching defs:option

3  * option parsing
25 * option_base - base class for implementation of a command line option
27 * Every command line option added before calling parse_options()
33 * option_base - construct an option with the given options.
34 * @param option_name name part of long form e.g. --option
36 * @param help_str short description of the option
125 * option<void> - a binary option
127 * Use this option type for constructing specified / not-specified
146 * option<int> - a integer option
160 * option<string> - a string option
182 * option< vector<string> > - a string vector option
206 option::~option()
212 /// non templatized ctor for boolean option
213 option::option(bool & value, char const * name, char short_name, char const * help)
219 /// specialization of option ctor for integer option
221 option::option(int & value, char const * name, char short_name,
229 /// specialization of option ctor for string option
231 option::option(string & value, char const * name, char short_name,
239 /// specialization of option ctor for vector<string> option
241 option::option(vector<string> & value, char const * name, char short_name,