Last change
on this file since 158 was 34, checked in by Nicholas Riley, 22 years ago |
Changes for Pester 1.1d1.
|
File size:
365 bytes
|
Line | |
---|
1 | //
|
---|
2 | // PSAlert.m
|
---|
3 | // Pester
|
---|
4 | //
|
---|
5 | // Created by Nicholas Riley on Sat Oct 26 2002.
|
---|
6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
7 | //
|
---|
8 |
|
---|
9 | #import "PSAlert.h"
|
---|
10 |
|
---|
11 |
|
---|
12 | @implementation PSAlert
|
---|
13 |
|
---|
14 | + (PSAlert *)alert;
|
---|
15 | {
|
---|
16 | NSAssert(NO, @"Class is abstract");
|
---|
17 | return nil;
|
---|
18 | }
|
---|
19 |
|
---|
20 | - (void)triggerForAlarm:(PSAlarm *)alarm;
|
---|
21 | {
|
---|
22 | NSAssert(NO, @"Class is abstract");
|
---|
23 | }
|
---|
24 |
|
---|
25 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.