mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
336 B
C++
17 lines
336 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pRadioItem : public pAction {
|
||
|
RadioItem &radioItem;
|
||
|
|
||
|
bool checked();
|
||
|
void setChecked();
|
||
|
void setGroup(const set<RadioItem&> &group);
|
||
|
void setText(const string &text);
|
||
|
|
||
|
pRadioItem(RadioItem &radioItem) : pAction(radioItem), radioItem(radioItem) {}
|
||
|
void constructor();
|
||
|
void destructor();
|
||
|
};
|
||
|
|
||
|
}
|