Constructor implementation
| 42 | |
| 43 | // Constructor implementation |
| 44 | JsonTitleImpl::JsonTitleImpl(const fl::string &name, const fl::string &text) FL_NOEXCEPT { |
| 45 | // Create an instance of the new internal class |
| 46 | mInternal = fl::make_shared<JsonUiTitleInternal>(name, text); |
| 47 | |
| 48 | // Register the component with the JsonUiManager |
| 49 | addJsonUiComponent(mInternal); |
| 50 | } |
| 51 | |
| 52 | // Destructor implementation |
| 53 | JsonTitleImpl::~JsonTitleImpl() { |
nothing calls this directly
no test coverage detected