Adds references to the collection variables

This commit is contained in:
Felipe Zimmerle
2017-02-02 18:32:00 -03:00
committed by Felipe Zimmerle
parent e95efa05cc
commit d851699529
9 changed files with 39 additions and 15 deletions

View File

@@ -42,7 +42,7 @@ class Transaction;
class AnchoredVariable {
public:
AnchoredVariable(Transaction* t, std::__cxx11::string name);
AnchoredVariable(Transaction* t, std::string name);
~AnchoredVariable();
void unset();

View File

@@ -49,7 +49,7 @@ class Rule {
std::vector<actions::Action *> *_actions,
std::string fileName,
int lineNumber);
explicit Rule(std::__cxx11::string marker);
explicit Rule(std::string marker);
~Rule();
bool evaluate(Transaction *transaction);

View File

@@ -68,7 +68,6 @@ class RuleMessage {
int m_maturity;
int m_accuracy;
std::string m_reference;
std::string m_referenceOp;
std::list<std::string> m_tags;
std::list<std::string> m_server_logs;