action.cpp 361 B

1234567891011121314151617181920212223242526
  1. #if defined(Hiro_Action)
  2. namespace hiro {
  3. auto pAction::construct() -> void {
  4. }
  5. auto pAction::destruct() -> void {
  6. }
  7. auto pAction::setEnabled(bool enabled) -> void {
  8. @autoreleasepool {
  9. [cocoaAction setEnabled:enabled];
  10. }
  11. }
  12. auto pAction::setVisible(bool visible) -> void {
  13. @autoreleasepool {
  14. [cocoaAction setHidden:!visible];
  15. }
  16. }
  17. }
  18. #endif