diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
commit | c435c7daa9df1b08dc85132fcd1c154bea9b69e2 (patch) | |
tree | 5537f3c91a67b35c4c8aa918b708b7e4aad8f146 /src/action.h | |
parent | 59690513123de8904eef2a03fe7fcaaed98b1b7b (diff) | |
download | build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.gz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.bz2 build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.xz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.zip |
Fixes to use libbu++ Bu::String
Diffstat (limited to '')
-rw-r--r-- | src/action.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/action.h b/src/action.h index 7f60095..de08911 100644 --- a/src/action.h +++ b/src/action.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef ACTION_H | 1 | #ifndef ACTION_H |
2 | #define ACTION_H | 2 | #define ACTION_H |
3 | 3 | ||
4 | #include <bu/fstring.h> | 4 | #include <bu/string.h> |
5 | 5 | ||
6 | class Action | 6 | class Action |
7 | { | 7 | { |
@@ -9,7 +9,7 @@ public: | |||
9 | Action( const class AstBranch *pRoot ); | 9 | Action( const class AstBranch *pRoot ); |
10 | virtual ~Action(); | 10 | virtual ~Action(); |
11 | 11 | ||
12 | const Bu::FString &getName() const; | 12 | const Bu::String &getName() const; |
13 | 13 | ||
14 | void call( class Runner *pRunner ); | 14 | void call( class Runner *pRunner ); |
15 | 15 | ||
@@ -19,7 +19,7 @@ public: | |||
19 | static Action *genDefaultDefault(); | 19 | static Action *genDefaultDefault(); |
20 | 20 | ||
21 | private: | 21 | private: |
22 | Bu::FString sName; | 22 | Bu::String sName; |
23 | const class AstBranch *pRoot; | 23 | const class AstBranch *pRoot; |
24 | class Ast *pAst; | 24 | class Ast *pAst; |
25 | }; | 25 | }; |