| 41 | { |
| 42 | void entry() override { std::cout << "* Switch is OFF" << std::endl; }; |
| 43 | void react(Toggle const &) override { transit<On>(); }; |
| 44 | }; |
| 45 | |
| 46 | FSM_INITIAL_STATE(Switch, Off) |
nothing calls this directly
no outgoing calls
no test coverage detected