#ifndef GOLFER_H #define GOLFER_H #include using namespace std; class Golfer { private: string name; string eMail; int handicap; static const int MAX_HANDICAP = 99; public: Golfer(); Golfer(string name, string eMail, int handicap); string getName() const { return name; }; void setName(string n) { name = n; }; string getEMail() const; void setEMail(string address); int getHandicap() const; void setHandicap(int h); bool operator >(Golfer const &rhs); bool operator ==(Golfer const &rhs); }; //const int Golfer::MAX_GOLFER = 99; #endif