mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
24 lines
394 B
Objective-C
24 lines
394 B
Objective-C
//
|
|
// FineGrainedLoggingAppDelegate.h
|
|
// FineGrainedLogging
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class TimerOne;
|
|
@class TimerTwo;
|
|
|
|
@interface FineGrainedLoggingAppDelegate : NSObject <NSApplicationDelegate>
|
|
{
|
|
TimerOne *timerOne;
|
|
TimerTwo *timerTwo;
|
|
|
|
NSWindow *__unsafe_unretained window;
|
|
}
|
|
|
|
@property (unsafe_unretained) IBOutlet NSWindow *window;
|
|
|
|
@end
|