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. */
| 160 | \param description Argument description. |
| 161 | */ |
| 162 | Arg(const std::string& longname, const std::string& shortname, |
| 163 | const std::string& description) : m_longname(longname), |
| 164 | m_shortname(shortname), m_description(description), m_set(false), |
| 165 | m_hidden(false), m_positional(PosType::None) |
| 166 | {} |
| 167 | |
| 168 | public: |
| 169 | virtual ~Arg() |
nothing calls this directly
no outgoing calls
no test coverage detected