TimerTwo.h 189 B

12345678910111213141516
  1. //
  2. // TimerTwo.h
  3. // FineGrainedLogging
  4. //
  5. // CocoaLumberjack Demos
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. @interface TimerTwo : NSObject
  9. {
  10. NSTimer *foodTimer;
  11. NSTimer *sleepTimer;
  12. }
  13. @end