Code:
#include "CarClass.h"
#include <iostream>
using namespace std;

int main()
{
    CarList inventory;
     Car carObject;
     bool addAnotherCar = true;

	  	ListNode *start_ptr = NULL;
		for (int i = 0; i<2; i++) {
				cout << "Please enter the make of the vehicle: ";
				&Car::getMake;
                cout << "Please enter the model of the vehicle: ";
                &Car::getModel;
                cout << "Please enter the color of the vehicle: ";
                &Car::getColor;
                cout << "Please enter the year of the vehicle: ";
                &Car::getYear;
                cout << "Please enter the mileage of the vehicle: ";
                &Car::getMileage;
	 
			inventory.insert(Car);
		
		//Information needs to be changed
	 	
	 	inventory.car_details();

		//Add more cars

		//delete desidred car

		void CarList::del(Car "Voltzwagon")	{
		}

		//Print information
		inventory.car_details();
		}
	    return 0;
	}