blob: a6e7d21fca99ad0c2124963c676322171386a288 (
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
|