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