| 38 | } |
| 39 | |
| 40 | bool SettingMetaBool::Load(const QJsonObject& json_setting) { |
| 41 | this->default_value = ReadBoolValue(json_setting, "default"); |
| 42 | return true; |
| 43 | } |
| 44 | |
| 45 | std::string SettingMetaBool::Export(ExportMode export_mode) const { |
| 46 | (void)export_mode; |
nothing calls this directly
no test coverage detected