Line | |
---|
1 | //
|
---|
2 | // PSAlarms.h
|
---|
3 | // Pester
|
---|
4 | //
|
---|
5 | // Created by Nicholas Riley on Fri Oct 11 2002.
|
---|
6 | // Copyright (c) 2002 __MyCompanyName__. All rights reserved.
|
---|
7 | //
|
---|
8 |
|
---|
9 | #import <Cocoa/Cocoa.h>
|
---|
10 |
|
---|
11 | extern NSString * const PSAlarmsDidChangeNotification;
|
---|
12 |
|
---|
13 | @class PSAlarm;
|
---|
14 |
|
---|
15 | @interface PSAlarms : NSObject {
|
---|
16 | NSMutableArray *alarms;
|
---|
17 | }
|
---|
18 |
|
---|
19 | + (void)setUp;
|
---|
20 | + (PSAlarms *)allAlarms;
|
---|
21 |
|
---|
22 | - (int)alarmCount;
|
---|
23 | - (PSAlarm *)alarmAtIndex:(int)index;
|
---|
24 | - (void)removeAlarmAtIndex:(int)index;
|
---|
25 | - (void)removeAlarmsAtIndices:(NSArray *)indices;
|
---|
26 |
|
---|
27 | @end |
---|
Note:
See
TracBrowser
for help on using the repository browser.