#ifndef SCORES_H #define SCORES_H #include #include using namespace std; class Scores{ public: Scores(string name, int score){ this-> name = name; this-> score = score; } //accessors string getName(){return name;} int getScore(){return score;} private: string name; int score; }; #endif