Last change
on this file since 332 was 34, checked in by Nicholas Riley, 22 years ago |
Changes for Pester 1.1d1.
|
File size:
612 bytes
|
Line | |
---|
1 | //
|
---|
2 | // PSAlarms.h
|
---|
3 | // Pester
|
---|
4 | //
|
---|
5 | // Created by Nicholas Riley on Fri Oct 11 2002.
|
---|
6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
7 | //
|
---|
8 |
|
---|
9 | #import <Cocoa/Cocoa.h>
|
---|
10 |
|
---|
11 | extern NSString * const PSAlarmsDidChangeNotification;
|
---|
12 | extern NSString * const PSAlarmsNextAlarmDidChangeNotification;
|
---|
13 |
|
---|
14 | @class PSAlarm;
|
---|
15 |
|
---|
16 | @interface PSAlarms : NSObject {
|
---|
17 | NSMutableArray *alarms;
|
---|
18 | PSAlarm *nextAlarm;
|
---|
19 | }
|
---|
20 |
|
---|
21 | + (void)setUp;
|
---|
22 | + (PSAlarms *)allAlarms;
|
---|
23 |
|
---|
24 | - (PSAlarm *)nextAlarm;
|
---|
25 | - (int)alarmCount;
|
---|
26 | - (PSAlarm *)alarmAtIndex:(int)index;
|
---|
27 | - (void)removeAlarmAtIndex:(int)index;
|
---|
28 | - (void)removeAlarmsAtIndices:(NSArray *)indices;
|
---|
29 |
|
---|
30 | @end |
---|
Note:
See
TracBrowser
for help on using the repository browser.