1234567891011121314151617 |
- #if defined(Hiro_Action)
- namespace hiro {
- struct pAction : pObject {
- Declare(Action, Object)
- auto setEnabled(bool enabled) -> void override;
- auto setVisible(bool visible) -> void override;
- NSMenuItem* cocoaAction = nullptr;
- };
- }
- #endif
|