bsnes/hiro/reference/widget/radio-label.hpp

16 lines
322 B
C++
Raw Normal View History

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();
};
}