blob: 8a3001a0529fd84ccbbcfda927d65ff204236fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef FUNCTION_EXISTS_H
#define FUNCTION_EXISTS_H
#include "function.h"
class FunctionExists : public Function
{
public:
FunctionExists();
virtual ~FunctionExists();
virtual Bu::FString getName() const;
virtual Variable call( Variable &input, VarList lParams );
};
#endif
|