| 198 | } |
| 199 | |
| 200 | StringList getKeys() const |
| 201 | { |
| 202 | StringList keys; |
| 203 | |
| 204 | for (auto it = m_options.begin(); it != m_options.end(); |
| 205 | it = m_options.upper_bound(it->first)) |
| 206 | { |
| 207 | keys.push_back(it->first); |
| 208 | } |
| 209 | return keys; |
| 210 | } |
| 211 | |
| 212 | std::vector<Option> getOptions(std::string const& name="") const; |
| 213 | StringList toCommandLine() const; |
no test coverage detected