Refactoring: rename evaluate to execute on actions

This commit is contained in:
Felipe Zimmerle
2019-02-25 21:47:51 -03:00
parent 9c0d5d104d
commit 81b98f3e0c
170 changed files with 233 additions and 238 deletions

View File

@@ -34,7 +34,7 @@ class SkipAfter : public Action {
: Action(action, RunTimeOnlyIfMatchKind),
m_skipName(std::make_shared<std::string>(m_parser_payload)) { }
bool evaluate(RuleWithActions *rule, Transaction *transaction) override;
bool execute(RuleWithActions *rule, Transaction *transaction) override;
private:
std::shared_ptr<std::string> m_skipName;
};