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/functionast.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/functionast.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/functionast.h b/src/functionast.h index b971683..0de564f 100644 --- a/src/functionast.h +++ b/src/functionast.h | |||
@@ -9,11 +9,11 @@ public: | |||
9 | FunctionAst( const class AstBranch *pRoot, class Runner *pRunner ); | 9 | FunctionAst( const class AstBranch *pRoot, class Runner *pRunner ); |
10 | virtual ~FunctionAst(); | 10 | virtual ~FunctionAst(); |
11 | 11 | ||
12 | virtual Bu::FString getName() const; | 12 | virtual Bu::String getName() const; |
13 | virtual Variable call( Variable &input, VarList lParams ); | 13 | virtual Variable call( Variable &input, VarList lParams ); |
14 | 14 | ||
15 | private: | 15 | private: |
16 | Bu::FString sName; | 16 | Bu::String sName; |
17 | const class AstBranch *pRoot; | 17 | const class AstBranch *pRoot; |
18 | class Runner *pRunner; | 18 | class Runner *pRunner; |
19 | }; | 19 | }; |