| 489 | } |
| 490 | |
| 491 | Driver* getDriver(int driverId) { |
| 492 | // Search for driver by ID |
| 493 | for (auto& pair : drivers) { |
| 494 | if (pair.first == driverId) |
| 495 | return pair.second; |
| 496 | } |
| 497 | return NULL; |
| 498 | } |
| 499 | |
| 500 | |
| 501 | } // namespace midi |
no outgoing calls
no test coverage detected