mirror of
https://github.com/darlinghq/darling-foundation.git
synced 2024-11-23 11:49:43 +00:00
0062883daa
This adds a lot of new types and a lot of code.
25 lines
621 B
Objective-C
25 lines
621 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@class NSMethodSignature, NSInvocation;
|
|
|
|
NS_ROOT_CLASS
|
|
@interface NSProxy <NSObject> {
|
|
Class isa;
|
|
}
|
|
|
|
+ (id)alloc;
|
|
+ (id)allocWithZone:(NSZone *)zone NS_AUTOMATED_REFCOUNT_UNAVAILABLE;
|
|
+ (Class)class;
|
|
+ (BOOL)respondsToSelector:(SEL)aSelector;
|
|
- (void)forwardInvocation:(NSInvocation *)invocation;
|
|
- (NSMethodSignature *)methodSignatureForSelector:(SEL)sel;
|
|
- (void)dealloc;
|
|
- (void)finalize;
|
|
- (NSString *)description;
|
|
- (NSString *)debugDescription;
|
|
- (BOOL)allowsWeakReference NS_UNAVAILABLE;
|
|
- (BOOL)retainWeakReference NS_UNAVAILABLE;
|
|
+ (BOOL)isAncestorOfObject:(id)object;
|
|
|
|
@end
|