-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathXCFrameworkDefinition.h
More file actions
40 lines (29 loc) · 1.37 KB
/
XCFrameworkDefinition.h
File metadata and controls
40 lines (29 loc) · 1.37 KB
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
36
37
38
39
40
////////////////////////////////////////////////////////////////////////////////
//
// JASPER BLUES
// Copyright 2012 Jasper Blues
// All Rights Reserved.
//
// NOTICE: Jasper Blues permits you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import <XcodeEditor/XCAbstractDefinition.h>
#import <XcodeEditor/XcodeSourceTreeType.h>
@interface XCFrameworkDefinition : XCAbstractDefinition
{
NSString* _filePath;
BOOL _copyToDestination;
XcodeSourceTreeType _sourceTree;
}
@property(nonatomic, strong, readonly) NSString* filePath;
@property(nonatomic, readonly) BOOL copyToDestination;
@property(nonatomic, readonly) XcodeSourceTreeType sourceTree;
+ (XCFrameworkDefinition*)frameworkDefinitionWithFilePath:(NSString*)filePath copyToDestination:(BOOL)copyToDestination;
+ (XCFrameworkDefinition*)frameworkDefinitionWithFilePath:(NSString*)filePath copyToDestination:(BOOL)copyToDestination sourceTree:(XcodeSourceTreeType)sourceTree;
- (id)initWithFilePath:(NSString*)filePath copyToDestination:(BOOL)copyToDestination;
- (id)initWithFilePath:(NSString*)filePath copyToDestination:(BOOL)copyToDestination
sourceTree:(XcodeSourceTreeType)sourceTree;
- (NSString*)fileName;
@end