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_RX_H_
#include <string>
#include <list>
#include "operators/operator.h"
#include "utils/regex.h"
@@ -38,6 +39,8 @@ class Rx : public Operator {
m_re(param) { }
bool evaluate(Assay *assay, const std::string &input);
std::list<std::string> matched;
private:
Regex m_re;
};