| 28 | } |
| 29 | |
| 30 | void from_json(const nlohmann::json& json, SegmentationTaskList::Task::Form& form) |
| 31 | { |
| 32 | form.Path = json["Path"].get<std::string>(); |
| 33 | form.Result = json["Result"].get<std::string>(); |
| 34 | } |
| 35 | |
| 36 | void to_json(nlohmann::json& json, const SegmentationTaskList::Task::Scene& scene) |
| 37 | { |
nothing calls this directly
no test coverage detected