aboutsummaryrefslogtreecommitdiff
path: root/src/functionreplace.h
blob: dbecef6bf942202313b7e521f4aa8333fdcc880e (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