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