Refactoring on the operators: negation is now being handled globally

Other minors changes were also made, including adding the prefix `m_'
to all the members of the class.
This commit is contained in:
Felipe Zimmerle
2016-10-19 10:23:03 -03:00
parent 28a44b966a
commit 8757840bc3
36 changed files with 88 additions and 138 deletions

View File

@@ -32,8 +32,8 @@ bool VerifySSN::evaluate(Transaction *transaction, const std::string &str) {
VerifySSN::VerifySSN(std::string op, std::string param, bool negation)
: Operator() {
this->op = op;
this->param = param;
this->m_op = op;
this->m_param = param;
}
} // namespace operators