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