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