Fix localization changing mapping logical names.
[enjoyable.git] / Classes / NJInputPathElement.h
1 //
2 // NJInputPathElement.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/13/13.
6 //
7 //
8 @interface NJInputPathElement : NSObject
9
10 - (id)initWithName:(NSString *)name
11 did:(NSString *)did
12 base:(NJInputPathElement *)base;
13
14 @property (nonatomic, weak) NJInputPathElement *base;
15 @property (nonatomic, copy) NSString *name;
16 @property (nonatomic, readonly) NSString *uid;
17 @property (nonatomic, strong) NSArray *children;
18
19 - (NJInputPathElement *)elementForUID:(NSString *)uid;
20
21 @end