diff options
Diffstat (limited to '')
-rw-r--r-- | src/function.h | 4 |
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 | ||
7 | class Function | 7 | class 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 | ||