TF++, Miscellaneous classes and modules in C++:

◆ Eopt_arg_mode

option modes ,The following enums are used to define whether an option has or has not an argument. It is used within Declare. It tells Commandline whether it has to look for arguments to the option.

See also
tfxx::cmdline::Commandline
tfxx::cmdline::Declare
Enumerator
arg_no 

option has no argument

arg_yes 

option requires an argument

arg_opt 

option may have an optional argument

Definition at line 97 of file commandline.h.

98  {
100  arg_no=0,
102  arg_yes=1,
104  arg_opt=2
105  };
option requires an argument
Definition: commandline.h:102
option may have an optional argument
Definition: commandline.h:104
option has no argument
Definition: commandline.h:100