Adds contains to the list of operators compatibles with the capture action

This commit is contained in:
Felipe Zimmerle
2015-09-02 22:59:05 -03:00
parent 3de845fac1
commit 7afd93196d
4 changed files with 74 additions and 7 deletions

View File

@@ -31,6 +31,8 @@ class Contains : public Operator {
Contains(std::string op, std::string param, bool negation)
: Operator(op, param, negation) { }
bool evaluate(Assay *assay, const std::string &exp) override;
std::list<std::string> matched;
};
} // namespace operators