aboutsummaryrefslogtreecommitdiff
path: root/src/functiontargets.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-09-12 00:56:51 +0000
committerMike Buland <eichlan@xagasoft.com>2006-09-12 00:56:51 +0000
commitafd6d53eb6b3f169fa50cea360b982b60e589e6f (patch)
tree94190ab089936e681d7c08192524521e1b9322f3 /src/functiontargets.h
parentd19ada0aa88aba1c7b439035c0028440ac860ec3 (diff)
downloadbuild-afd6d53eb6b3f169fa50cea360b982b60e589e6f.tar.gz
build-afd6d53eb6b3f169fa50cea360b982b60e589e6f.tar.bz2
build-afd6d53eb6b3f169fa50cea360b982b60e589e6f.tar.xz
build-afd6d53eb6b3f169fa50cea360b982b60e589e6f.zip
Added more goo, it may be good goo.
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