aboutsummaryrefslogtreecommitdiff
path: root/src/functionexists.h
blob: f4629fb58c08eebd26880db7d0ad2d533146d6ac (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::String getName() const;
	virtual Variable call( Variable &input, VarList lParams );

};

#endif