| 63 | } |
| 64 | |
| 65 | std::vector<CLI::ConfigItem> from_config(std::istream &input) const override { |
| 66 | json j; |
| 67 | input >> j; |
| 68 | return _from_config(j); |
| 69 | } |
| 70 | |
| 71 | std::vector<CLI::ConfigItem> |
| 72 | _from_config(json j, std::string name = "", std::vector<std::string> prefix = {}) const { |
nothing calls this directly
no outgoing calls
no test coverage detected