mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
21 lines
307 B
C++
21 lines
307 B
C++
#include "PLCheckboxWidget.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
CheckboxWidget::CheckboxWidget(const WidgetBasicState &state)
|
|
: WidgetSpec<CheckboxWidget>(state)
|
|
{
|
|
}
|
|
|
|
CheckboxWidget::~CheckboxWidget()
|
|
{
|
|
}
|
|
|
|
bool CheckboxWidget::Init(const WidgetBasicState &state)
|
|
{
|
|
(void)state;
|
|
|
|
return true;
|
|
}
|
|
}
|