blob: 05442d8cdbbb01c382e84a1583e5d6aa4ab9546b (
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::String getName() const;
virtual Variable call( Variable &input, VarList lParams );
};
#endif
|