* Get the min/max range for the setting. * @return The min/max range. */
| 474 | * @return The min/max range. |
| 475 | */ |
| 476 | std::tuple<int32_t, uint32_t> IntSettingDesc::GetRange() const |
| 477 | { |
| 478 | return this->get_range_cb != nullptr ? this->get_range_cb(*this) : std::tuple(this->min, this->max); |
| 479 | } |
| 480 | |
| 481 | /** |
| 482 | * Make the value valid and then write it to the setting. |
no outgoing calls
no test coverage detected