1 #ifndef __LED_H_INCLUDED
2 #define __LED_H_INCLUDED
3 
4 #include <AppKit/AppKit.h>
5 
6 
7 @interface LED : NSView
8 {
9 	NSImage		*led[13];
10 
11 	int		track;
12 	int		min;
13 	int		sec;
14 }
15 
16 - initWithFrame:(NSRect)frame;
17 
18 - (void)setTrack:(int)track;
19 - (void)setMin:(int)min;
20 - (void)setSec:(int)sec;
21 - (void)setNoCD;
22 
23 @end
24 
25 #endif
26