* Retrieve a vector with all the various option names found during * the command line argument parsing. * * @return Returns a std::vector of all unique options parsed. */
| 183 | * @return Returns a std::vector<std::string> of all unique options parsed. |
| 184 | */ |
| 185 | std::vector<std::string> GetOptionNames() const |
| 186 | { |
| 187 | std::vector<std::string> keys; |
| 188 | for (auto const &k : present) |
| 189 | { |
| 190 | keys.push_back(k); |
| 191 | } |
| 192 | return keys; |
| 193 | } |
| 194 | |
| 195 | |
| 196 | /** |
no outgoing calls