| 1656 | { |
| 1657 | public: |
| 1658 | OptionParser(const OptionMap& options, const PositionalList& positional, bool allow_unrecognised) |
| 1659 | : m_options(options) |
| 1660 | , m_positional(positional) |
| 1661 | , m_allow_unrecognised(allow_unrecognised) |
| 1662 | { |
| 1663 | } |
| 1664 | |
| 1665 | ParseResult |
| 1666 | parse(int argc, const char* const* argv); |
nothing calls this directly
no outgoing calls
no test coverage detected