// car.h  Specification file for a simple class for a car
// J.Remen  for CPS 171 Winter 2002

// your name
#ifndef car_h
#define car_h

#include 
using namespace std;

class car
{	public:
		car();				// default constructor
		void GetData();		// Prompt user for information about
							// a car
		void Display();		// Display the info in a car
		void UpdateMileage(float amt); // Update mileage by amt
		
	private:
		string make;
		string model;
		float mileage;	
};

#endif