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

#include "function.h"

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

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

};

#endif