* Set next state. * * @param[in] nextState Next state to go in process method. */
| 113 | * @param[in] nextState Next state to go in process method. |
| 114 | */ |
| 115 | void setState(AbstractState& nextState) |
| 116 | { |
| 117 | m_nextState = &nextState; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Get call counter for entry method. |
no outgoing calls
no test coverage detected