mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 20:19:40 +00:00
21 lines
397 B
Objective-C
21 lines
397 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
// DUMMY
|
|
|
|
@interface NSPopover : NSObject
|
|
@end
|
|
|
|
@implementation NSPopover
|
|
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
|
|
{
|
|
return [NSMethodSignature signatureWithObjCTypes: "v@:"];
|
|
}
|
|
|
|
- (void)forwardInvocation:(NSInvocation *)anInvocation
|
|
{
|
|
NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]);
|
|
}
|
|
@end
|
|
|
|
|