aboutsummaryrefslogtreecommitdiff
path: root/src/functiontostring.h
blob: 3c3ecc7be27f235c9ad8b78d2cf8c043a73f3558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FUNCTION_TO_STRING_H
#define FUNCTION_TO_STRING_H

#include "function.h"

class FunctionToString : public Function
{
public:
	FunctionToString();
	virtual ~FunctionToString();

	virtual Bu::FString getName() const;
	virtual Variable call( Variable &input, VarList lParams );
};

#endif