| 82 | } |
| 83 | |
| 84 | void Arguments::set(const std::string& key, const std::string& value) { |
| 85 | if (get(key)) { |
| 86 | throw CommandException("Key is specified more than once \"" + key + "\""); |
| 87 | } |
| 88 | args_[key] = value; |
| 89 | } |
| 90 | |
| 91 | void Arguments::set(const std::string& flag) { |
| 92 | if (isSet(flag)) { |
no test coverage detected