From d19ada0aa88aba1c7b439035c0028440ac860ec3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 12 Sep 2006 00:22:33 +0000 Subject: Build now builds, it has viewers, and dependancy checking, and everything works. Now we have to add cleaning, caching, and more viewer hooks / viewers. --- src/function.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/function.h') 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: virtual ~Function(); void addParam( const char *str ); - virtual void execute( const StringList &lInput, StringList &lOutput )=0; + virtual void execute( Build *bld, const StringList &lInput, StringList &lOutput )=0; + virtual Function *duplicate( Build &bld, const std::string &cont, VarMap *mExtra ) = 0; + void copyData( Function *pSrc, Build &bld, const std::string &cont, VarMap *mExtra ); protected: StringList lParams; -- cgit v1.2.3