forked from voidref/orangered
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefs.h
38 lines (31 loc) · 735 Bytes
/
prefs.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
//
// prefs.h
// Orangered
//
// Created by Alan Westbrook on 6/26/10.
// Copyright 2010 Voidref Software. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface Prefs : NSObject
{
NSUserDefaults* settings;
NSString* name;
NSString* password;
BOOL savePassword;
BOOL openAtLogin;
BOOL autoUpdateCheck;
BOOL logDiagnostics;
NSInteger timeout;
NSInteger redditCheckInterval;
}
@property (retain) NSString* password;
@property (retain) NSString* name;
@property BOOL savePassword;
@property BOOL openAtLogin;
@property BOOL autoUpdateCheck;
@property BOOL logDiagnostics;
@property NSInteger timeout;
@property NSInteger redditCheckInterval;
- (id) init;
- (void) dealloc;
@end