source: trunk/Cocoa/Pester/Source/PSMediaAlert.h@ 554

Last change on this file since 554 was 544, checked in by Nicholas Riley, 15 years ago

Don't keep QTMovies around (and corresponding files open) for pending alarms; we could run out of file handles this way.

File size: 459 bytes
Line 
1//
2// PSMediaAlert.h
3// Pester
4//
5// Created by Nicholas Riley on Tue Apr 08 2003.
6// Copyright (c) 2003 Nicholas Riley. All rights reserved.
7//
8
9#import "PSAlert.h"
10
11extern const float PSMediaAlertNoVolume;
12
13@interface PSMediaAlert : PSAlert {
14 unsigned short repetitions;
15 float outputVolume;
16}
17
18- (id)initWithRepetitions:(unsigned short)numReps;
19
20- (unsigned short)repetitions;
21- (float)outputVolume;
22- (void)setOutputVolume:(float)volume;
23
24@end
Note: See TracBrowser for help on using the repository browser.