* Constructs a state machine. */
| 115 | * Constructs a state machine. |
| 116 | */ |
| 117 | StateMachine() : |
| 118 | m_currentState(nullptr), |
| 119 | m_nextState(nullptr) |
| 120 | { |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Constructs a state machine and set the starting state. |
nothing calls this directly
no outgoing calls
no test coverage detected