| 230 | |
| 231 | template<typename F> |
| 232 | struct MealyMachine : tinyfsm::Fsm<F> |
| 233 | { |
| 234 | // input actions are modeled in react(): |
| 235 | // - conditional dependent of event type or payload |
| 236 | // - transit<>(ActionFunction) |
| 237 | void entry(void) { }; /* no entry actions */ |
| 238 | void exit(void) { }; /* no exit actions */ |
| 239 | }; |
| 240 | |
| 241 | } /* namespace tinyfsm */ |
| 242 |
nothing calls this directly
no outgoing calls
no test coverage detected