| 223 | |
| 224 | template<typename F> |
| 225 | struct MooreMachine : tinyfsm::Fsm<F> |
| 226 | { |
| 227 | virtual void entry(void) { }; /* entry actions in some states */ |
| 228 | void exit(void) { }; /* no exit actions */ |
| 229 | }; |
| 230 | |
| 231 | template<typename F> |
| 232 | struct MealyMachine : tinyfsm::Fsm<F> |
nothing calls this directly
no outgoing calls
no test coverage detected