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