mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
322 B
C++
16 lines
322 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pRadioLabel : public pWidget {
|
||
|
RadioLabel& radioLabel;
|
||
|
|
||
|
void setChecked();
|
||
|
void setGroup(const group<RadioLabel>& group);
|
||
|
void setText(string text);
|
||
|
|
||
|
pRadioLabel(RadioLabel& radioLabel) : pWidget(radioLabel), radioLabel(radioLabel) {}
|
||
|
void constructor();
|
||
|
void destructor();
|
||
|
};
|
||
|
|
||
|
}
|