forked from lechium/Breezy
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFBSystemServiceOpenApplicationRequest.h
36 lines (29 loc) · 1.45 KB
/
FBSystemServiceOpenApplicationRequest.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
33
34
35
/*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 2:40:47 AM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /System/Library/PrivateFrameworks/FrontBoard.framework/FrontBoard
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
@class NSString, FBSOpenApplicationOptions, FBProcess;
@interface FBSystemServiceOpenApplicationRequest : NSObject {
NSString* _bundleIdentifier;
FBSOpenApplicationOptions* _options;
FBProcess* _clientProcess;
BOOL _trusted;
}
@property (assign,getter=isTrusted,nonatomic) BOOL trusted; //@synthesize trusted=_trusted - In the implementation block
@property (nonatomic,copy) NSString * bundleIdentifier; //@synthesize bundleIdentifier=_bundleIdentifier - In the implementation block
@property (nonatomic,copy) FBSOpenApplicationOptions * options; //@synthesize options=_options - In the implementation block
@property (nonatomic,retain) FBProcess * clientProcess; //@synthesize clientProcess=_clientProcess - In the implementation block
+(id)request;
-(id)description;
-(FBSOpenApplicationOptions *)options;
-(void)setOptions:(FBSOpenApplicationOptions *)arg1 ;
-(NSString *)bundleIdentifier;
-(void)setBundleIdentifier:(NSString *)arg1 ;
-(FBProcess *)clientProcess;
-(BOOL)isTrusted;
-(void)setTrusted:(BOOL)arg1 ;
-(void)setClientProcess:(FBProcess *)arg1 ;
@end