aboutsummaryrefslogtreecommitdiff
path: root/src/functiontargets.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/functiontargets.h21
1 files changed, 21 insertions, 0 deletions
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 @@
1#ifndef FUNCTION_TARGETS_H
2#define FUNCTION_TARGETS_H
3
4#include <stdint.h>
5
6#include "function.h"
7
8class FunctionTargets : public Function
9{
10public:
11 FunctionTargets();
12 virtual ~FunctionTargets();
13
14 virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput );
15 virtual Function *duplicate( Build &bld, const std::string &cont, VarMap *mExtra );
16
17private:
18
19};
20
21#endif