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

#include "function.h"

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

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

#endif