mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
303 B
C++
23 lines
303 B
C++
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() {
|
|
}
|
|
|
|
}
|