]> git.saurik.com Git - apple/security.git/blob - KVSKeychainSyncingProxy/CKDLockMonitor.h
Security-59754.80.3.tar.gz
[apple/security.git] / KVSKeychainSyncingProxy / CKDLockMonitor.h
1 //
2 // CKDLockMonitor.h
3 // Security
4 //
5
6 #import "CKDLockMonitor.h"
7
8 @protocol CKDLockListener <NSObject>
9
10 - (void) unlocked;
11 - (void) locked;
12
13 @end
14
15 @protocol CKDLockMonitor <NSObject>
16
17 @property (readonly) BOOL unlockedSinceBoot;
18 @property (readonly) BOOL locked;
19
20 - (void)recheck;
21
22 - (void)connectTo: (NSObject<CKDLockListener>*) proxy;
23
24 @end