blob: b8f20d5e6b2544684656b9ab9b43b7100b7d67f6 (
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::FString getName() const;
virtual Variable call( Variable &input, VarList lParams );
};
#endif
|