11 lines
174 B
C++
11 lines
174 B
C++
|
// file VehicleFactory.hpp
|
||
|
#ifndef VehicleFactory_hpp
|
||
|
#define VehicleFactory_hpp
|
||
|
|
||
|
#include "Vehicle.hpp"
|
||
|
|
||
|
Vehicle* vehicleForPayload(std::string model, int weight);
|
||
|
|
||
|
|
||
|
#endif
|