#include <ProgramOptions.h>
Helper class to declare positional and named options, and help message.
Here is an example use case for the following command line:
Program <positional> --named1 <value1> --named2 <value2>
Let's assume that the help message is provided in a file help.txt in the auxiliary directory.
In the associated Elements::Program, override defineProgramArguments() as follows:
Static Public Member Functions | |
| static ProgramOptions | fromAuxFile (const std::string &helpFile) | 
| Create option descriptions from help file.  More... | |
Public Member Functions | |
| ~ProgramOptions ()=default | |
| Destructor.  | |
| ProgramOptions (const std::string &helpMessage="") | |
| Create option descriptions with help message.  More... | |
| void | named (const char *name, const ValueSemantics *value, const char *description) | 
| Add a named option.  More... | |
| void | positional (const char *name, const ValueSemantics *value, const char *description) | 
| Add a positional option.  More... | |
| void | flag (const char *name, const char *description) | 
| Add a flag.  More... | |
| std::pair< OptionsDescription, PositionalOptionsDescription > | asPair () const | 
| Get the named and positional option descriptions.  More... | |