// file: car.hh // author: Robert Keller // purpose: Define Car #include "Chassis.hh" #include /** * A Car represents an automobile. **/ class Car { public: /** Create a car of a specific make. **/ Car(string _make); /** Return a description of this car. **/ string getDescription(); /** Determine chassis make for a given car make. **/ static string getChassisMake(string carMake); private: /** the make of this car **/ string make; /** the Chassis of this car **/ Chassis chassis; }; // class Car