// arr5.h By: Aiman Hanna - ©1993-2006 Aiman Hanna #ifndef ARR5_H #define ARR5_H #include #include #include "tstring.h" // This file was provided by a 3rd party; // if you do not have access to it, then // you must either write your own String class, // or use char* for strings, which is a standard class Car { public: Car( String mdl = "nomodel", int nd = 4, double mil = 0.0 ); void SetModel( String ); String GetModel(); void SetNumDrs(int); int GetNumDrs(); double GetMileage(); void SetMileage( double ); private: String model; int numdrs; double mileage; }; #endif