bsnes/hiro/gtk/action/menu-check-item.hpp

16 lines
243 B
C++

#if defined(Hiro_MenuCheckItem)
namespace hiro {
struct pMenuCheckItem : pAction {
Declare(MenuCheckItem, Action)
auto orphan() -> void;
auto setChecked(bool checked) -> void;
auto setText(const string& text) -> void;
};
}
#endif