mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
289 B
C++
Executable File
23 lines
289 B
C++
Executable File
namespace phoenix {
|
|
|
|
bool pRadioItem::checked() {
|
|
return false;
|
|
}
|
|
|
|
void pRadioItem::setChecked() {
|
|
}
|
|
|
|
void pRadioItem::setGroup(const group<RadioItem>& group) {
|
|
}
|
|
|
|
void pRadioItem::setText(const string& text) {
|
|
}
|
|
|
|
void pRadioItem::constructor() {
|
|
}
|
|
|
|
void pRadioItem::destructor() {
|
|
}
|
|
|
|
}
|