| 39 | CheckBox::~CheckBox() {} |
| 40 | |
| 41 | CheckBox* CheckBox::create() |
| 42 | { |
| 43 | CheckBox* widget = new CheckBox(); |
| 44 | if (widget->init()) |
| 45 | { |
| 46 | widget->autorelease(); |
| 47 | return widget; |
| 48 | } |
| 49 | AX_SAFE_DELETE(widget); |
| 50 | return nullptr; |
| 51 | } |
| 52 | |
| 53 | CheckBox* CheckBox::create(std::string_view backGround, |
| 54 | std::string_view backGroundSelected, |
nothing calls this directly
no test coverage detected