-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSBApplicationPersistence.h
33 lines (29 loc) · 1.08 KB
/
SBApplicationPersistence.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
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "SpringBoard-Structs.h"
#import <XXUnknownSuperclass.h> // Unknown library
@class NSMutableDictionary;
@interface SBApplicationPersistence : XXUnknownSuperclass {
NSMutableDictionary* _state;
BOOL _dirty;
dispatch_queue_s* _stateQueue;
dispatch_queue_s* _writeQueue;
}
+(id)sharedInstance;
+(id)_statePath;
+(void)migrateSystemLocalNotifications;
-(id)init;
-(id)valueForKey:(id)key bundleOrDisplayIdentifier:(id)identifier ofType:(Class)type;
-(void)setValue:(id)value forKey:(id)key bundleOrDisplayIdentifier:(id)identifier;
-(id)archivedObjectForKey:(id)key bundleOrDisplayIdentifier:(id)identifier ofType:(Class)type;
-(void)setArchivedObject:(id)object forKey:(id)key bundleOrDisplayIdentifier:(id)identifier;
-(id)allBundleOrDisplayIdentifiersWithState;
-(void)purgeKeysForBundleAndDisplayIdentifiersOtherThan:(id)bundleAndDisplayIdentifiersOtherThan;
-(void)flushSynchronously;
-(void)_flushSynchronously;
-(void)_markDirty;
@end