Files
kotlin-fork/native/native.tests/testData/interop/objc/tests/objcWeakRefs.h
T
2024-01-31 16:17:21 +00:00

14 lines
297 B
Objective-C
Vendored

#import <Foundation/NSObject.h>
@class DeallocListener;
@interface DeallocExecutor : NSObject
@property DeallocListener* deallocListener;
@end
@interface DeallocListener : NSObject
@property (weak) DeallocExecutor* deallocExecutor;
@property BOOL deallocated;
-(BOOL)deallocExecutorIsNil;
@end