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