aboutsummaryrefslogtreecommitdiff
path: root/src/functiongetmakedeps.h
blob: caa09523f00b727581c7e19289d7546d06f875e6 (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