// file: strings.hh // author: Robert Keller // purpose: Use string constants rather than magic strings #include static const string BUICK = "Buick"; static const string CHEVROLET = "Chevrolet"; static const string CHRYSLER = "Chrysler"; static const string DODGE = "Dodge"; static const string FISCHER_BODY = "Fischer Body"; static const string FORD = "Ford"; static const string PLYMOUTH = "Plymouth"; static const string UNKNOWN = "unknown";