aboutsummaryrefslogtreecommitdiff
path: root/src/function.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/function.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 '')
-rw-r--r--src/function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/function.h b/src/function.h
index 9573bd3..1575bfd 100644
--- a/src/function.h
+++ b/src/function.h
@@ -1,7 +1,7 @@
1#ifndef FUNCTION_H 1#ifndef FUNCTION_H
2#define FUNCTION_H 2#define FUNCTION_H
3 3
4#include "bu/fstring.h" 4#include "bu/string.h"
5#include "variable.h" 5#include "variable.h"
6 6
7class Function 7class Function
@@ -10,7 +10,7 @@ public:
10 Function(); 10 Function();
11 virtual ~Function(); 11 virtual ~Function();
12 12
13 virtual Bu::FString getName() const=0; 13 virtual Bu::String getName() const=0;
14 14
15 virtual Variable call( Variable &input, VarList lParams )=0; 15 virtual Variable call( Variable &input, VarList lParams )=0;
16 16