* Checks that a particular option was specified by the user */
| 9 | * Checks that a particular option was specified by the user |
| 10 | */ |
| 11 | bool CheckOptionSpecified(const std::map<std::string, std::string>& options, const std::string& option) |
| 12 | { |
| 13 | auto it = options.find(option); |
| 14 | return it!=options.end(); |
| 15 | } |
| 16 | |
| 17 | /* |
| 18 | * Retrieves the user provided option |
no test coverage detected