public
Description: Simple Meditation Timer with MP4-Export Capabilities
Homepage: http://wcrawford.wordpress.com/2006/11/09/meditation-timer-12/
Clone URL: git://github.com/whenders0n/meditation-timer.git
meditation-timer / SessionTimer.h
100644 25 lines (20 sloc) 0.404 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// SessionTimer.h
// Meditation Timer
//
// Created by William Henderson on 2/24/06.
// Free for any kind of peaceful use.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface SessionTimer : NSObject {
NSMovie *playingChime;
NSTimer *theTimer;
int timeCount;
}
-(int)timeCount;
-(void)playChime:(NSString *) chimeName;
-(void)stopPlayingChime;
-(void)startTimer;
-(void)stopTimer;
-(void)timerFire;
 
@end