// file: Chassis.cc // author: Robert Keller // purpose: Define class Chassis // #include "Chassis.hh" /** Construct a chassis of a specified type. **/ Chassis::Chassis(string _type) { type = _type; } /** Return description of this chassis. **/ const string Chassis::getDescription() { return type; }