// customer.h // header file for Customer class #ifndef CUSTOMER_H #define CUSTOMER_H #include #include using namespace std; // CLASS DECLARATION SECTION ================================= class Customer { private: int custID; int zipCode; double sales; string name; public: //contructors Customer(int=0, int=0, double=0.0, string=""); //mutators void SetCustID(int); void SetZipCode(int); void SetSales(double); void SetName(string); //inspectors int GetCustID() const; }; #endif