diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:56:51 +0000 | 
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:56:51 +0000 | 
| commit | afd6d53eb6b3f169fa50cea360b982b60e589e6f (patch) | |
| tree | 94190ab089936e681d7c08192524521e1b9322f3 /src/functiontargets.h | |
| parent | d19ada0aa88aba1c7b439035c0028440ac860ec3 (diff) | |
| download | build-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.h | 21 | 
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 | |||
| 8 | class FunctionTargets : public Function | ||
| 9 | { | ||
| 10 | public: | ||
| 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 | |||
| 17 | private: | ||
| 18 | |||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
