Parse from arguments.
| 137 | |
| 138 | // Parse from arguments. |
| 139 | parse_result parse(args const & args) const |
| 140 | { |
| 141 | if (opt_style) |
| 142 | return parse(args, *opt_style); |
| 143 | else |
| 144 | return parse(args, option_style::posix()); |
| 145 | } |
| 146 | parse_result parse(args const & args, const option_style & style) const; |
| 147 | |
| 148 | // Parsing mode. |
nothing calls this directly
no outgoing calls
no test coverage detected