| 8 | |
| 9 | struct DefaultGetter : public ArgGetter { |
| 10 | virtual bool GetBool(const std::string& arg, bool def) { |
| 11 | return ::GetBoolArg(arg, def); |
| 12 | } |
| 13 | virtual std::vector<std::string> GetMultiArgs(const std::string& arg) { |
| 14 | if (!mapMultiArgs.count(arg)) |
| 15 | return std::vector<std::string>(); |
no test coverage detected