mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-05-07 20:12:46 +00:00
17 lines
300 B
Objective-C
17 lines
300 B
Objective-C
//
|
|
// CustomFormattersAppDelegate.h
|
|
// CustomFormatters
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface CustomFormattersAppDelegate : NSObject <NSApplicationDelegate> {
|
|
NSWindow *__unsafe_unretained window;
|
|
}
|
|
|
|
@property (unsafe_unretained) IBOutlet NSWindow *window;
|
|
|
|
@end
|