source: releases/Pester/1.0/Source/PSAlarms.h

Last change on this file was 28, checked in by Nicholas Riley, 22 years ago

Pester 1.0

File size: 615 bytes
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
11extern NSString * const PSAlarmsDidChangeNotification;
12extern 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.