cppfsm
cppfsm copied to clipboard
A simple, generic, header-only state machine implementation for C++.
Results
2
cppfsm issues
Sort by
recently updated
recently updated
newest added
Hi, @eglimi I noticed that we cannot use more transactions than one like that: ```c++ FSM::Fsm fsm; fsm.add_transactions({ { States::Initial, States::A, Triggers::ToA, nullptr, action0 }, { States::A , States::B, Triggers::ToB,...
mirroring the `add_transitions` functions behaviors in constructor you can declare a FMS with all needed information in a single line (e.g. member initializer list)