mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
17 lines
297 B
Objective-C
17 lines
297 B
Objective-C
//
|
|
// OverflowTestMacAppDelegate.h
|
|
// OverflowTestMac
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface OverflowTestMacAppDelegate : NSObject <NSApplicationDelegate> {
|
|
NSWindow *__unsafe_unretained window;
|
|
}
|
|
|
|
@property (unsafe_unretained) IBOutlet NSWindow *window;
|
|
|
|
@end
|