-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMIDataProtectionChangeOperation.h
More file actions
31 lines (27 loc) · 1023 Bytes
/
MIDataProtectionChangeOperation.h
File metadata and controls
31 lines (27 loc) · 1023 Bytes
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
/**
* 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 <XXUnknownSuperclass.h> // Unknown library
@class NSArray;
__attribute__((visibility("hidden")))
@interface MIDataProtectionChangeOperation : XXUnknownSuperclass {
NSArray* _urls;
int _newClass;
BOOL _retryIfLocked;
BOOL _retried;
int _operationType;
id _retryStartBlock;
id _completionBlock;
}
@property(copy) id completionBlock;
@property(copy) id retryStartBlock;
+(id)dataProtectionChangeOperationForURL:(id)url settingClass:(int)aClass retryingIfLocked:(BOOL)locked changeType:(int)type;
+(id)dataProtectionChangeOperationForURLs:(id)urls settingClass:(int)aClass retryingIfLocked:(BOOL)locked changeType:(int)type;
-(void).cxx_destruct;
-(void)performChangeOperation;
-(BOOL)_runChangeOperationNeedToRetry:(BOOL*)retry withError:(id*)error;
-(id)initWithURLs:(id)urls newClass:(int)aClass retryingIfLocked:(BOOL)locked changeType:(int)type;
@end