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

#include "function.h"

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

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

#endif