cd6840a817
Extract most of interop_objc_smoke tests
10 lines
199 B
Objective-C
10 lines
199 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@protocol ExceptionThrower
|
|
-(void)throwException;
|
|
@end;
|
|
|
|
@interface ExceptionThrowerManager : NSObject
|
|
+(void)throwExceptionWith:(id<ExceptionThrower>)thrower;
|
|
@end;
|