C_CPP/08_PTRN/VehicleFactory.hpp

11 lines
174 B
C++
Raw Normal View History

2018-03-09 09:47:53 +01:00
// file VehicleFactory.hpp
#ifndef VehicleFactory_hpp
#define VehicleFactory_hpp
#include "Vehicle.hpp"
Vehicle* vehicleForPayload(std::string model, int weight);
#endif