mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-06-06 20:18:32 +00:00
17 lines
189 B
Objective-C
17 lines
189 B
Objective-C
//
|
|
// TimerTwo.h
|
|
// FineGrainedLogging
|
|
//
|
|
// CocoaLumberjack Demos
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface TimerTwo : NSObject
|
|
{
|
|
NSTimer *foodTimer;
|
|
NSTimer *sleepTimer;
|
|
}
|
|
|
|
@end
|