-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathACDSDynamicProxy.h
33 lines (27 loc) · 1.03 KB
/
ACDSDynamicProxy.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 17 2017 16:24:48).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import <Foundation/NSProxy.h>
@class NSRecursiveLock;
@interface ACDSDynamicProxy : NSProxy
{
_Bool _instanceMethod;
_Bool _validate;
Class _proxy;
id _proxyInstance;
NSRecursiveLock *_recursiveLock;
}
+ (_Bool)respondsToSelector:(SEL)arg1;
+ (id)instance:(Class)arg1;
@property(retain, nonatomic) NSRecursiveLock *recursiveLock; // @synthesize recursiveLock=_recursiveLock;
@property(nonatomic) _Bool validate; // @synthesize validate=_validate;
@property(nonatomic) _Bool instanceMethod; // @synthesize instanceMethod=_instanceMethod;
@property(retain, nonatomic) id proxyInstance; // @synthesize proxyInstance=_proxyInstance;
@property(retain, nonatomic) Class proxy; // @synthesize proxy=_proxy;
- (void).cxx_destruct;
- (void)forwardInvocation:(id)arg1;
- (id)methodSignatureForSelector:(SEL)arg1;
- (_Bool)isKindOfClass:(Class)arg1;
@end