FineGrainedLoggingAppDelegate.h 394 B

1234567891011121314151617181920212223
  1. //
  2. // FineGrainedLoggingAppDelegate.h
  3. // FineGrainedLogging
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. @class TimerOne;
  9. @class TimerTwo;
  10. @interface FineGrainedLoggingAppDelegate : NSObject <NSApplicationDelegate>
  11. {
  12. TimerOne *timerOne;
  13. TimerTwo *timerTwo;
  14. NSWindow *__unsafe_unretained window;
  15. }
  16. @property (unsafe_unretained) IBOutlet NSWindow *window;
  17. @end