aboutsummaryrefslogtreecommitdiff
path: root/src/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function.h')
-rw-r--r--src/function.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/function.h b/src/function.h
index 73dcb01..7035d2f 100644
--- a/src/function.h
+++ b/src/function.h
@@ -11,7 +11,9 @@ public:
11 virtual ~Function(); 11 virtual ~Function();
12 12
13 void addParam( const char *str ); 13 void addParam( const char *str );
14 virtual void execute( const StringList &lInput, StringList &lOutput )=0; 14 virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput )=0;
15 virtual Function *duplicate( Build &bld, const std::string &cont, VarMap *mExtra ) = 0;
16 void copyData( Function *pSrc, Build &bld, const std::string &cont, VarMap *mExtra );
15 17
16protected: 18protected:
17 StringList lParams; 19 StringList lParams;