| 17 | namespace dena { |
| 18 | |
| 19 | struct config : public std::map<std::string, std::string> { |
| 20 | std::string get_str(const std::string& key, const std::string& def = "") |
| 21 | const; |
| 22 | long long get_int(const std::string& key, long long def = 0) const; |
| 23 | }; |
| 24 | |
| 25 | void parse_args(int argc, char **argv, config& conf); |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected