-
Notifications
You must be signed in to change notification settings - Fork 8
/
SHPammer.h
executable file
·55 lines (37 loc) · 979 Bytes
/
SHPammer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// SHPammer.h
// SHPammer
//
// Created by Steve Hooley on 26/06/2007.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface SHPammer : NSObject {
NSString* _subject;
NSAttributedString* _message;
NSString* _senderAddress;
NSString* _recipientAddress;
int _sentCount;
int _rate_secs;
BOOL _isPlaying;
NSTimer* _timer;
}
- (IBAction)start:(id)sender;
- (IBAction)stop:(id)sender;
- (NSString *)subject;
- (void)setSubject:(NSString *)value;
- (NSAttributedString *)message;
- (void)setMessage:(NSAttributedString *)value;
- (NSString *)senderAddress;
- (void)setSenderAddress:(NSString *)value;
- (NSString *)recipientAddress;
- (void)setRecipientAddress:(NSString *)value;
- (int)sentCount;
- (void)setSentCount:(int)value;
- (BOOL)isPlaying;
- (void)setIsPlaying:(BOOL)value;
- (int)rate_secs;
- (void)setRate_secs:(int)newRate_secs;
- (NSTimer *)timer;
- (void)setTimer:(NSTimer *)newTimer;
@end