| 218 | ~GCodeMachineState() noexcept; |
| 219 | |
| 220 | GCodeState GetState() const noexcept { return state; } |
| 221 | void SetState(GCodeState newState) noexcept; |
| 222 | inline void AdvanceState() noexcept { state = static_cast<GCodeState>(static_cast<uint8_t>(state) + 1); } |
| 223 |
no outgoing calls
no test coverage detected