bsnes/higan/phoenix/reference/widget/radio-button.cpp

23 lines
303 B
C++
Raw Normal View History

namespace phoenix {
bool pRadioButton::checked() {
return false;
}
void pRadioButton::setChecked() {
}
void pRadioButton::setGroup(const group<RadioButton>& group) {
}
void pRadioButton::setText(const string& text) {
}
void pRadioButton::constructor() {
}
void pRadioButton::destructor() {
}
}