diff --git a/src/actions/action.h b/src/actions/action.h index 0f7edc58..5b9caf61 100644 --- a/src/actions/action.h +++ b/src/actions/action.h @@ -34,6 +34,9 @@ class Action { explicit Action(std::string _action) : action_kind(2), action(_action) { } + explicit Action(std::string _action, int kind) + : action_kind(kind), + action(_action) { } /** *