GNU CommonC++
|
It only makes sense to have a single one of these set and it is exclusive with CommandOptionCollect. More...
#include <cmdoptns.h>
Public Member Functions | |
CommandOptionRest (const char *inOptionName, const char *inOptionLetter, const char *inDescription, bool inRequired=false, CommandOption **ppNext=&defaultCommandOptionList) | |
CommandOptionRest contructor. |
It only makes sense to have a single one of these set and it is exclusive with CommandOptionCollect.
It is the option that takes the rest of the command line options that are not part of any other options. e.g. "strace -ofile command arg1 arg2". The "command arg1 arg2" part is placed in objects of this class.
CommandOption to take the rest of the command line
ost::CommandOptionRest::CommandOptionRest | ( | const char * | inOptionName, |
const char * | inOptionLetter, | ||
const char * | inDescription, | ||
bool | inRequired = false , |
||
CommandOption ** | ppNext = &defaultCommandOptionList |
||
) |
CommandOptionRest contructor.
This sets the optionType for this object to Trailing.
inOptionName | long option name |
inOptionLetter | short letter name |
inDescription | short description of the option |
inRequired | true if option is required |
ppNext | the linked list header |