]> git.saurik.com Git - apple/security.git/blob - keychain/SecureObjectSync/SOSIntervalEvent.h
Security-59754.80.3.tar.gz
[apple/security.git] / keychain / SecureObjectSync / SOSIntervalEvent.h
1 //
2 // SOSIntervalEvent.h
3 // Security
4 //
5 // Created by murf on 9/12/19.
6 //
7
8 #ifndef SOSIntervalEvent_h
9 #define SOSIntervalEvent_h
10
11 @interface SOSIntervalEvent : NSObject
12
13 @property (nonatomic, retain) NSUserDefaults *defaults;
14 @property (nonatomic, retain) NSString *dateDescription;
15 @property (nonatomic) NSTimeInterval earliestDate;
16 @property (nonatomic) NSTimeInterval latestDate;
17
18 - (id) initWithDefaults:(NSUserDefaults*) defaults dateDescription:(NSString *)dateDescription earliest:(NSTimeInterval) earliest latest: (NSTimeInterval) latest;
19 - (void) schedule;
20 - (bool) checkDate;
21 - (NSDate *) getDate;
22 - (void) followup;
23
24 @end
25
26 #endif /* SOSIntervalEvent_h */