aboutsummaryrefslogtreecommitdiff
path: root/src/rule.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/rule.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/rule.h b/src/rule.h
index ff251ca..012073a 100644
--- a/src/rule.h
+++ b/src/rule.h
@@ -27,7 +27,7 @@ public:
27 this->sName = sName; 27 this->sName = sName;
28 } 28 }
29 29
30 FunctionList &getFunctionList() 30 FunctionList &getFilterList()
31 { 31 {
32 return lFilter; 32 return lFilter;
33 } 33 }
@@ -37,8 +37,14 @@ public:
37 return lPerform; 37 return lPerform;
38 } 38 }
39 39
40 FunctionList &getMatchesList()
41 {
42 return lMatches;
43 }
44
40private: 45private:
41 std::string sName; 46 std::string sName;
47 FunctionList lMatches;
42 FunctionList lFilter; 48 FunctionList lFilter;
43 PerformList lPerform; 49 PerformList lPerform;
44}; 50};