// file: Chassis.hh // author: Robert Keller // purpose: Define class Chassis #include /** * A Chassis represents the chassis of an automobile. **/ class Chassis { public: /** Construct a chassis of a specified make. **/ Chassis(string _type); /** Return description of this chassis. **/ const string getDescription(); private: /** the description of this chassis **/ string type; }; // class Chassis