source: trunk/Cocoa/Pester/Source/PSAlarms.h@ 26

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

Pester 1.0b1

File size: 503 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;
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.