Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
CatalystAppleScript/NSScriptCommand.h
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (18 sloc)
480 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSScriptCommand.h | |
| // CatalystAppleScript | |
| // | |
| // Created by Steven Troughton-Smith on 05/06/2021. | |
| // | |
| // NSScriptCommand is not exposed to Catalyst | |
| // which makes it difficult to subclass directly | |
| // in Swift. So let's define it here | |
| #ifndef NSScriptCommand_h | |
| #define NSScriptCommand_h | |
| @import Foundation; | |
| #if __IPHONE_OS_VERSION_MAX_ALLOWED <= 140000 | |
| @interface NSScriptCommand : NSObject | |
| -(void)performDefaultImplementation; | |
| @end | |
| #endif | |
| #endif /* NSScriptCommand_h */ |