| 392 | } |
| 393 | |
| 394 | void addDriver(int driverId, Driver* driver) { |
| 395 | assert(driver); |
| 396 | assert(driverId != -1); |
| 397 | drivers.push_back(std::make_pair(driverId, driver)); |
| 398 | } |
| 399 | |
| 400 | std::vector<int> getDriverIds() { |
| 401 | std::vector<int> driverIds; |
nothing calls this directly
no outgoing calls
no test coverage detected