C_CPP/08_PTRN/MP/VehicleFactory.hpp

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