// File: stat.h // A simple "struct" class. // All data member public. #ifndef STAT_H #define STAT_H class Stat { public: unsigned int game ; // game number int pmRating; // plus minus rating in the game // Overloaded less than operator bool operator < (const Stat& s2) const { return (pmRating < s2.pmRating) ; } } ; #endif