Adds variable TX and action "capture".

This commit is contained in:
Felipe Zimmerle
2015-08-05 10:07:47 -03:00
parent be4a0cb41c
commit 4f47651a6f
34 changed files with 338 additions and 30 deletions

View File

@@ -17,6 +17,7 @@
#define SRC_OPERATORS_PM_H_
#include <string>
#include <list>
#include "operators/operator.h"
#include "utils/acmp.h"
@@ -40,6 +41,7 @@ class Pm : public Operator {
virtual bool init(const char **error);
void postOrderTraversal(acmp_btree_node_t *node);
std::list<std::string> matched;
protected:
ACMP *m_p;
};