diff options
Diffstat (limited to '')
-rw-r--r-- | src/types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/types.h b/src/types.h index e405e35..9b8ecdf 100644 --- a/src/types.h +++ b/src/types.h | |||
@@ -1,22 +1,22 @@ | |||
1 | #ifndef TYPES_H | 1 | #ifndef TYPES_H |
2 | #define TYPES_H | 2 | #define TYPES_H |
3 | 3 | ||
4 | #include "bu/fstring.h" | 4 | #include "bu/string.h" |
5 | #include "bu/list.h" | 5 | #include "bu/list.h" |
6 | #include "bu/hash.h" | 6 | #include "bu/hash.h" |
7 | 7 | ||
8 | typedef Bu::List<Bu::FString> StrList; | 8 | typedef Bu::List<Bu::String> StrList; |
9 | 9 | ||
10 | class Variable; | 10 | class Variable; |
11 | typedef Bu::List<Variable> VarList; | 11 | typedef Bu::List<Variable> VarList; |
12 | typedef Bu::Hash<Bu::FString, Variable> VarHash; | 12 | typedef Bu::Hash<Bu::String, Variable> VarHash; |
13 | 13 | ||
14 | class Condition; | 14 | class Condition; |
15 | 15 | ||
16 | class Target; | 16 | class Target; |
17 | typedef Bu::List<Target *> TargetList; | 17 | typedef Bu::List<Target *> TargetList; |
18 | class Profile; | 18 | class Profile; |
19 | typedef Bu::Hash<Bu::FString, Profile *> ProfileHash; | 19 | typedef Bu::Hash<Bu::String, Profile *> ProfileHash; |
20 | 20 | ||
21 | class AstNode; | 21 | class AstNode; |
22 | class AstBranch; | 22 | class AstBranch; |