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