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

#endif