Download: https://solutionzip.com/downloads/vehicletype-c/
Create a C++ program that accomplishes the following:Create a class called vehicleType that has the following members:
Public members:-A function called getCost that returns the cost of the vehicle-A function called setCost to set the cost of the vehiclePrivate members-A private member called costCreate a class called carType that uses vehicleType as its base class. This class will have the following members:
Public members:A function called setStyle to set the style
A function called setColor to set the color
A function called GetStyle that returns the style
A function called GetColor that returns the color
Default constructor
Parameters constructor (you should be able to pass all the information into the constructor y create a car with such information)
Private members:A variable called style
A variable called color
A variable called License_Plate
***Create all the functions and constructors’ definitions. ***Test your classes:
Create instances o