mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
318 B
Objective-C
8 lines
318 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface FrameworkObject : NSObject
|
|
- (nonnull instancetype)initWithInvocation:(nullable NSInvocation *)invocation NS_SWIFT_UNAVAILABLE("unavailable");
|
|
- (nonnull instancetype)initWithSelector:(nonnull SEL)selector;
|
|
- (nonnull instancetype)initWithInteger:(NSInteger)integer;
|
|
@end
|