mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
22 lines
488 B
Objective-C
22 lines
488 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@protocol NSWindowDelegate @end
|
|
|
|
@interface NSWindow
|
|
- (void)setDelegate:(id <NSWindowDelegate>)anObject;
|
|
- (id <NSWindowDelegate>) delegate;
|
|
@end
|
|
|
|
@protocol IBStringsTableWindowDelegate <NSWindowDelegate>
|
|
@end
|
|
|
|
@interface IBStringsTableWindow : NSWindow {}
|
|
@end
|
|
|
|
@implementation IBStringsTableWindow
|
|
- (void)setDelegate:(id <IBStringsTableWindowDelegate>)delegate {
|
|
}
|
|
- (id <IBStringsTableWindowDelegate>)delegate {
|
|
return 0;
|
|
}
|
|
@end
|