// file VehicleFactory.hpp
#ifndef VehicleFactory_hpp
#define VehicleFactory_hpp
#include "Vehicle.hpp"
Vehicle* vehicleForPayload(std::string model, int weight);
#endif