1234567891011121314151617181920212223 |
- //
- // 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
|