mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
285 B
C++
15 lines
285 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pCheckLabel : public pWidget {
|
||
|
CheckLabel& checkLabel;
|
||
|
|
||
|
void setChecked(bool checked);
|
||
|
void setText(string text);
|
||
|
|
||
|
pCheckLabel(CheckLabel& checkLabel) : pWidget(checkLabel), checkLabel(checkLabel) {}
|
||
|
void constructor();
|
||
|
void destructor();
|
||
|
};
|
||
|
|
||
|
}
|