#include using namespace std; class WordPair { // description of a word pair public: WordPair(); WordPair(string newWrong, string newRight); string getWrongWord(); string getRightWord(); void setWrongWord(string newWrong); void setRightWord(string newRight); private: string wrongWord; // incorrectly spelled word string rightWord; // correctly spelled word };