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