| 56 | // SettingDataBool |
| 57 | |
| 58 | SettingDataBool::SettingDataBool(const SettingMetaBool* meta) |
| 59 | : SettingData(meta->key, meta->type), value(meta->default_value), meta(meta) {} |
| 60 | |
| 61 | void SettingDataBool::Reset() { this->value = this->meta->default_value; } |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected