Convert m_state to a State enum. */
| 75 | |
| 76 | /** Convert m_state to a State enum. */ |
| 77 | State GetState() const { return static_cast<State>(m_state); } |
| 78 | |
| 79 | /** Convert a State enum to a uint8_t and store it in m_state. */ |
| 80 | void SetState(State state) { m_state = static_cast<uint8_t>(state); } |
no outgoing calls
no test coverage detected