bsnes/higan/phoenix/reference/action/radio-item.cpp

23 lines
288 B
C++
Raw Normal View History

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