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