forked from keysight-eggplant/libs-xcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPBXCoder.h
More file actions
29 lines (19 loc) · 670 Bytes
/
PBXCoder.h
File metadata and controls
29 lines (19 loc) · 670 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
#import <Foundation/Foundation.h>
@interface PBXCoder : NSObject
{
NSString *fileName;
NSString *projectRoot;
NSMutableDictionary *dictionary;
NSMutableDictionary *objects;
NSMutableDictionary *objectCache;
}
- (id) initWithProjectFile: (NSString *)name;
- (id) initWithContentsOfFile: (NSString *)name;
- (id) unarchive;
- (id) unarchiveObjectForKey: (NSString *)key;
- (id) unarchiveFromDictionary: (NSDictionary *)dictionary;
- (NSMutableArray *) resolveArrayMembers: (NSMutableArray *)array;
- (id) applyKeysAndValuesFromDictionary: (NSDictionary *)dictionary
toObject: (id)object;
- (NSString *) projectRoot;
@end