aboutsummaryrefslogtreecommitdiff
path: root/src/rule.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rule.h')
-rw-r--r--src/rule.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rule.h b/src/rule.h
index 73d7738..5b2bbfd 100644
--- a/src/rule.h
+++ b/src/rule.h
@@ -7,9 +7,11 @@
7 7
8class Function; 8class Function;
9class Perform; 9class Perform;
10class Build;
10 11
11typedef std::list<Function *> FunctionList; 12typedef std::list<Function *> FunctionList;
12typedef std::list<Perform *> PerformList; 13typedef std::list<Perform *> PerformList;
14typedef std::list<std::string> StringList;
13 15
14class Rule 16class Rule
15{ 17{
@@ -17,7 +19,7 @@ public:
17 Rule(); 19 Rule();
18 virtual ~Rule(); 20 virtual ~Rule();
19 21
20 void execute(); 22 StringList execute( Build &bld, StringList &lInput, PerformList &lPerf );
21 23
22 std::string getName() 24 std::string getName()
23 { 25 {