mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
15 lines
245 B
C++
15 lines
245 B
C++
#if defined(Hiro_CheckLabel)
|
|
|
|
namespace hiro {
|
|
|
|
struct pCheckLabel : pWidget {
|
|
Declare(CheckLabel, Widget)
|
|
|
|
auto minimumSize() const -> Size;
|
|
auto setChecked(bool checked) -> void;
|
|
auto setText(const string& text) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|