aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h8
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
8typedef Bu::List<Bu::FString> StrList; 8typedef Bu::List<Bu::String> StrList;
9 9
10class Variable; 10class Variable;
11typedef Bu::List<Variable> VarList; 11typedef Bu::List<Variable> VarList;
12typedef Bu::Hash<Bu::FString, Variable> VarHash; 12typedef Bu::Hash<Bu::String, Variable> VarHash;
13 13
14class Condition; 14class Condition;
15 15
16class Target; 16class Target;
17typedef Bu::List<Target *> TargetList; 17typedef Bu::List<Target *> TargetList;
18class Profile; 18class Profile;
19typedef Bu::Hash<Bu::FString, Profile *> ProfileHash; 19typedef Bu::Hash<Bu::String, Profile *> ProfileHash;
20 20
21class AstNode; 21class AstNode;
22class AstBranch; 22class AstBranch;