// file: main.cc // author: Robert Keller // purpose: Test class Car // #include "Car.hh" #include "strings.hh" #include int main() { // Declare some Cars. Car aChevy (CHEVROLET); Car aBuick (BUICK); Car aDodge (DODGE); Car aPlymouth(PLYMOUTH); Car aFord (FORD); // Print their descriptions. cout << aChevy. getDescription() << endl; cout << aBuick. getDescription() << endl; cout << aDodge. getDescription() << endl; cout << aPlymouth.getDescription() << endl; cout << aFord. getDescription() << endl; } /* Expected output: Chevrolet with Fischer Body chassis Buick with Fischer Body chassis Dodge with Chrysler chassis Plymouth with Chrysler chassis Ford with unknown chassis */