From afd6d53eb6b3f169fa50cea360b982b60e589e6f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 12 Sep 2006 00:56:51 +0000 Subject: Added more goo, it may be good goo. --- src/functiontargets.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/functiontargets.h (limited to 'src/functiontargets.h') diff --git a/src/functiontargets.h b/src/functiontargets.h new file mode 100644 index 0000000..8d3a0ed --- /dev/null +++ b/src/functiontargets.h @@ -0,0 +1,21 @@ +#ifndef FUNCTION_TARGETS_H +#define FUNCTION_TARGETS_H + +#include + +#include "function.h" + +class FunctionTargets : public Function +{ +public: + FunctionTargets(); + virtual ~FunctionTargets(); + + virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput ); + virtual Function *duplicate( Build &bld, const std::string &cont, VarMap *mExtra ); + +private: + +}; + +#endif -- cgit v1.2.3