I have a state machine look like this:
class FsmDef : public boost::msm::front::state_machine_def<FsmDef> {
private:
Args args;
using State = boost::msm::front::state<>;
public:
FsmDef(Args args) : args{args}
{}
struct InitState {};
struct State1 {
Args1 args1;
State1(Args1 args1) : args1(args1)
{}
};
struct transition_table : boost::mpl::vector<
boost::msm::front::Row<Init, boost::msm::front::none, State1>
> { };
using initial_state = InitState;
};
using Fsm = boost::msm::back::state_machine<FsmDef>;
Fsm fsm;
How can I construct fsm
and initialize private data for FsmDef
. The same thing with State1.