forked from keysight-eggplant/libs-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPBXBuildRule.m
More file actions
48 lines (37 loc) · 714 Bytes
/
PBXBuildRule.m
File metadata and controls
48 lines (37 loc) · 714 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#import "PBXCommon.h"
#import "PBXBuildRule.h"
@implementation PBXBuildRule
// Methods....
- (NSString *) fileType // getter
{
return fileType;
}
- (void) setFileType: (NSString *)object; // setter
{
ASSIGN(fileType,object);
}
- (NSString *) isEditable // getter
{
return isEditable;
}
- (void) setIsEditable: (NSString *)object; // setter
{
ASSIGN(isEditable,object);
}
- (NSMutableArray *) outputFiles // getter
{
return outputFiles;
}
- (void) setOutputFiles: (NSMutableArray *)object; // setter
{
ASSIGN(outputFiles,object);
}
- (NSString *) compilerSpec // getter
{
return compilerSpec;
}
- (void) setCompilerSpec: (NSString *)object; // setter
{
ASSIGN(compilerSpec,object);
}
@end