#C A factory function to create a car
| 19 | |
| 20 | // #C A factory function to create a car |
| 21 | Car* CreateCar(int i) |
| 22 | { |
| 23 | switch(i) { |
| 24 | case 0: return new Mercedes{}; |
| 25 | case 1: return new Toyota{}; |
| 26 | case 2: return new Tesla{}; |
| 27 | } |
| 28 | |
| 29 | return nullptr; |
| 30 | } |
| 31 | |
| 32 | int FastestCar() |
| 33 | { |
no outgoing calls
no test coverage detected