| 102 | } |
| 103 | |
| 104 | void SettingDataEnum::Copy(const SettingData* data) { |
| 105 | if (data->type != this->type) return; |
| 106 | |
| 107 | const SettingDataEnum* setting_data = static_cast<const SettingDataEnum*>(data); |
| 108 | this->value = setting_data->value; |
| 109 | } |
| 110 | |
| 111 | void SettingDataEnum::Reset() { this->value = this->meta->default_value; } |
| 112 |
nothing calls this directly
no outgoing calls
no test coverage detected