diff options
Diffstat (limited to 'src/rule.h')
-rw-r--r-- | src/rule.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 | |||
40 | private: | 45 | private: |
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 | }; |