aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-01-20 18:21:03 +0000
committerMike Buland <eichlan@xagasoft.com>2011-01-20 18:21:03 +0000
commitc435c7daa9df1b08dc85132fcd1c154bea9b69e2 (patch)
tree5537f3c91a67b35c4c8aa918b708b7e4aad8f146 /src/types.h
parent59690513123de8904eef2a03fe7fcaaed98b1b7b (diff)
downloadbuild-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.gz
build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.bz2
build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.xz
build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.zip
Fixes to use libbu++ Bu::String
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;