| 476 | } |
| 477 | |
| 478 | void addDriver(int driverId, Driver* driver) { |
| 479 | assert(driver); |
| 480 | drivers.push_back(std::make_pair(driverId, driver)); |
| 481 | } |
| 482 | |
| 483 | std::vector<int> getDriverIds() { |
| 484 | std::vector<int> driverIds; |
no outgoing calls
no test coverage detected