| 333 | } |
| 334 | |
| 335 | command_option_choice::command_option_choice(const std::string &n, command_value v) : name(n), value(v) |
| 336 | { |
| 337 | } |
| 338 | |
| 339 | command_option_choice &command_option_choice::fill_from_json_impl(nlohmann::json *j) { |
| 340 | name = string_not_null(j, "name"); |
nothing calls this directly
no outgoing calls
no test coverage detected