Files
Aerofoil/PortabilityLayer/PLCheckboxWidget.cpp
2020-01-05 02:33:03 -05:00

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;
}
}