]> git.saurik.com Git - apple/security.git/blobdiff - CircleJoinRequested/PersistentState.h
Security-57336.1.9.tar.gz
[apple/security.git] / CircleJoinRequested / PersistentState.h
diff --git a/CircleJoinRequested/PersistentState.h b/CircleJoinRequested/PersistentState.h
new file mode 100644 (file)
index 0000000..29e0ef7
--- /dev/null
@@ -0,0 +1,25 @@
+//
+//  PersistentState.h
+//  Security
+//
+//  Created by J Osborne on 7/11/13.
+//
+//
+
+#import <Foundation/Foundation.h>
+#include "SecureObjectSync/SOSCloudCircle.h"
+#include "SecureObjectSync/SOSPeerInfo.h"
+
+@interface PersistentState : NSObject
++(instancetype)loadFromStorage;
+-(unsigned int)defaultPendingApplicationReminderAlertInterval;
+-(void)writeToStorage;
+
+@property SOSCCStatus lastCircleStatus;
+@property NSDate *lastWritten;
+@property NSDate *pendingApplicationReminder;
+@property unsigned int pendingApplicationReminderAlertInterval;
+@property NSDate *applicationDate;
+@property NSNumber *debugShowLeftReason;
+@property BOOL absentCircleWithNoReason;
+@end