Rename from Enjoy/Enjoy2 to 'Enjoyable'. While I'm mucking in the project file, enabl...
[enjoyable.git] / Config.h
1 //
2 // Config.h
3 // Enjoy
4 //
5 // Created by Sam McCall on 4/05/09.
6 // Copyright 2009 University of Otago. All rights reserved.
7 //
8
9 @class Target;
10 @class JSAction;
11
12 @interface Config : NSObject
13
14 @property (copy) NSString *name;
15 @property (readonly) NSMutableDictionary *entries;
16
17 - (id)initWithName:(NSString *)name;
18 - (Target *)objectForKeyedSubscript:(JSAction *)action;
19 - (void)setObject:(Target *)target forKeyedSubscript:(JSAction *)action;
20
21 @end