aboutsummaryrefslogtreecommitdiff
path: root/src/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function.h')
-rw-r--r--src/function.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/function.h b/src/function.h
index 1575bfd..71d87ba 100644
--- a/src/function.h
+++ b/src/function.h
@@ -7,17 +7,17 @@
7class Function 7class Function
8{ 8{
9public: 9public:
10 Function(); 10 Function();
11 virtual ~Function(); 11 virtual ~Function();
12 12
13 virtual Bu::String 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
17 void setContext( class Context *p ); 17 void setContext( class Context *p );
18 18
19protected: 19protected:
20 class Context *pContext; 20 class Context *pContext;
21}; 21};
22 22
23#endif 23#endif