| 58 | } |
| 59 | |
| 60 | Config Config::fromFile(const std::string& path) |
| 61 | { |
| 62 | Config config; |
| 63 | config.readJsonFile(path); |
| 64 | return config; |
| 65 | } |
| 66 | |
| 67 | Config Config::fromJsonString(const std::string& json) |
| 68 | { |
nothing calls this directly
no test coverage detected