| 152 | |
| 153 | // add an option (shortcut version, bypass need for an Option object) |
| 154 | template<typename T> void add(const std::string& name, T value) |
| 155 | { |
| 156 | Option opt(name, value); |
| 157 | add(opt); |
| 158 | } |
| 159 | |
| 160 | void add(const std::string& name, const std::string& value) |
| 161 | { |
no outgoing calls
no test coverage detected