| 481 | } |
| 482 | |
| 483 | std::vector<int> getDriverIds() { |
| 484 | std::vector<int> driverIds; |
| 485 | for (auto& pair : drivers) { |
| 486 | driverIds.push_back(pair.first); |
| 487 | } |
| 488 | return driverIds; |
| 489 | } |
| 490 | |
| 491 | Driver* getDriver(int driverId) { |
| 492 | // Search for driver by ID |
no outgoing calls
no test coverage detected