| 89 | }; |
| 90 | |
| 91 | JsonSliderImpl::JsonSliderImpl(const fl::string &name, float value, float min, |
| 92 | float max, float step) |
| 93 | FL_NOEXCEPT : mInternal(fl::make_shared<JsonUiSliderInternal>(name, value, min, max, step)) { |
| 94 | // Register the component with the JsonUiManager |
| 95 | addJsonUiComponent(mInternal); |
| 96 | } |
| 97 | |
| 98 | JsonSliderImpl::~JsonSliderImpl() { |
| 99 | // Ensure the component is removed from the global registry |
nothing calls this directly
no test coverage detected