Adds support to the TX collection and setvar action

This commit is contained in:
Felipe Zimmerle
2015-08-06 23:41:46 -03:00
parent a9e0fbb41e
commit e12d95b10d
11 changed files with 707 additions and 4 deletions

View File

@@ -35,11 +35,17 @@ class Action {
explicit Action(const std::string& _action)
: action_kind(2),
action(_action),
temporaryAction(false) { }
name(_action),
temporaryAction(false) {
name.erase(0, 2);
}
explicit Action(const std::string& _action, int kind)
: action_kind(kind),
action(_action),
temporaryAction(false) { }
name(_action),
temporaryAction(false) {
name.erase(0, 2);
}
virtual ~Action() { }
/**