-
Notifications
You must be signed in to change notification settings - Fork 5
/
AAAccountManager.h
31 lines (25 loc) · 922 Bytes
/
AAAccountManager.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
/* Generated by RuntimeBrowser.
Image: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
*/
@class AAAccount, NSOperationQueue, NSArray, NSMutableArray;
@interface AAAccountManager : NSObject {
NSMutableArray *_accounts;
NSMutableArray *_originalAccounts;
NSOperationQueue *_requesterQueue;
}
@property(readonly) NSArray * accounts;
@property(readonly) AAAccount * primaryAccount;
+ (id)sharedManager;
- (id)accountWithUsername:(id)arg1;
- (id)accountsEnabledForDataclass:(id)arg1;
- (void)saveAllAccounts;
- (id)primaryAccount;
- (id)accountWithPersonID:(id)arg1;
- (void)removeAccount:(id)arg1;
- (id)accounts;
- (void)addAccount:(id)arg1;
- (void)updateAccount:(id)arg1;
- (id)accountWithIdentifier:(id)arg1;
- (void)reloadAccounts;
- (void).cxx_destruct;
@end