| 278 | void SetCommandedQueue(MovementSystemNumber qn) noexcept { commandedQueueNumber = qn; } |
| 279 | MovementSystemNumber GetCommandedQueue() const noexcept { return commandedQueueNumber; } |
| 280 | bool Executing() const noexcept { return executeAllCommands || commandedQueueNumber == ownQueueNumber; } |
| 281 | void ExecuteAll() noexcept { executeAllCommands = true; } |
| 282 | void ExecuteOnly(MovementSystemNumber qn) noexcept { ownQueueNumber = qn; executeAllCommands = false; } |
| 283 | MovementSystemNumber GetOwnQueue() const noexcept { return ownQueueNumber; } |
no outgoing calls
no test coverage detected