aboutsummaryrefslogtreecommitdiff
path: root/src/functionwrite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionwrite.h')
-rw-r--r--src/functionwrite.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/functionwrite.h b/src/functionwrite.h
new file mode 100644
index 0000000..75b2283
--- /dev/null
+++ b/src/functionwrite.h
@@ -0,0 +1,17 @@
1#ifndef FUNCTION_WRITE_H
2#define FUNCTION_WRITE_H
3
4#include "function.h"
5
6class FunctionWrite : public Function
7{
8public:
9 FunctionWrite();
10 virtual ~FunctionWrite();
11
12 virtual Bu::String getName() const;
13 virtual Variable call( Variable &input, VarList lParams );
14
15};
16
17#endif