| 30 | } |
| 31 | |
| 32 | void EngineCommandLineParser::addOptions(po::options_description& desc) |
| 33 | { |
| 34 | desc.add_options() |
| 35 | ("help", "produce help message") |
| 36 | ("settingsFile", po::value<std::string>(), "settings file"); |
| 37 | } |
| 38 | |
| 39 | std::optional<nlohmann::json> EngineCommandLineParser::readSettings(const boost::program_options::variables_map& params) |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected