Set how the consist must be loaded. */
| 161 | |
| 162 | /** Set how the consist must be loaded. */ |
| 163 | inline void SetLoadType(OrderLoadType load_type) { SB(this->flags, 4, 3, to_underlying(load_type)); } |
| 164 | /** Set how the consist must be unloaded. */ |
| 165 | inline void SetUnloadType(OrderUnloadType unload_type) { SB(this->flags, 0, 3, to_underlying(unload_type)); } |
| 166 | /** Set whether we must stop at stations or not. */ |
no test coverage detected