// player.h -- declaration of the player class // Each player has several attributes: // a name (first and last name), number, height (feet & inches), // weight (pounds) and birth date (day, month and year). #include #include "boolean.h" class player { public: // In this program, we have just 2 constructors: default and initial value. player(); player(char s[]); // Assignment and output operators boolean over200(); player& operator = (const player &p); friend ostream& operator << (ostream &os, player &p); private: // Data attributes for each player char last_name[15]; char first_name[15]; int number; int feet; int inches; int pounds; int birth_day; int birth_month; int birth_year; };