diff options
Diffstat (limited to 'src/function.h')
-rw-r--r-- | src/function.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/function.h b/src/function.h deleted file mode 100644 index af0d3fc..0000000 --- a/src/function.h +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | #ifndef FUNCTION_H | ||
2 | #define FUNCTION_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "build.h" | ||
6 | |||
7 | class Function | ||
8 | { | ||
9 | public: | ||
10 | Function(); | ||
11 | virtual ~Function(); | ||
12 | |||
13 | void addParam( const char *str ); | ||
14 | virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput )=0; | ||
15 | virtual Function *duplicate( Build &bld, const StringList *cont, VarMap *mExtra ) = 0; | ||
16 | void copyData( Function *pSrc, Build &bld, const StringList *cont, VarMap *mExtra ); | ||
17 | |||
18 | protected: | ||
19 | StringList lParams; | ||
20 | |||
21 | }; | ||
22 | |||
23 | #endif | ||