| 73 | } |
| 74 | |
| 75 | void streamfx::from_json(const nlohmann::json& json, version_stage& stage) |
| 76 | { |
| 77 | stage = stage_from_string(json.get<std::string>()); |
| 78 | } |
| 79 | |
| 80 | streamfx::version_info::version_info() : major(0), minor(0), patch(0), tweak(0), stage(version_stage::STABLE), url(""), name("") {} |
| 81 |