Constructor. \param longname Name of argument specified on command line with "--" prefix. \param shortname Optional name of argument specified on command line with "-" prefix. \param description Argument description. */
| 655 | \param description Argument description. |
| 656 | */ |
| 657 | BaseVArg(const std::string& longname, const std::string& shortname, |
| 658 | const std::string& description) : Arg(longname, shortname, description), |
| 659 | m_defaultProvided(false) |
| 660 | {} |
| 661 | |
| 662 | /** |
| 663 | Set the argument's value from the command-line args. |
nothing calls this directly
no outgoing calls
no test coverage detected