---------------------------------------------------------------------------- 2. State Machine Base Class Declaration
| 11 | // 2. State Machine Base Class Declaration |
| 12 | // |
| 13 | struct Switch : tinyfsm::MooreMachine<Switch> |
| 14 | { |
| 15 | /* pure virtual reaction (override required in all states) */ |
| 16 | virtual void react(Toggle const &) = 0; |
| 17 | }; |
| 18 | |
| 19 | |
| 20 | // ---------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected