#include #include #include "Golfer.h" using namespace std; int main () { Golfer g; g.setName("Tiger"); g.setHandicap(0); g.setEMail("tiger@gmail.com"); cout << g.getName() << endl; Golfer g2("Roger", "roger@yahoo", 17); cout << g2 << endl; Golfer g3("Ppoh"); if (g > g2) cout << "g is better"<< endl; else cout << "g2 is better or they are the same\n"; }