| 32 | { |
| 33 | void entry() override { std::cout << "* Opening ciruit (light goes OFF)" << std::endl; }; |
| 34 | void react(Toggle const &) override { transit<On>(); }; |
| 35 | }; |
| 36 | |
| 37 | FSM_INITIAL_STATE(Switch, Off) |
nothing calls this directly
no outgoing calls
no test coverage detected