#include #include #include "WordT.h" using namespace std; int main() { WordT word; word.SetWord("hello"); cout << "The word is " << word.GetWord() << " and I have seen it " << word.GetCount() << " times." << endl; word.IncrementCount(); cout << "The word is " << word.GetWord() << " and I have seen it " << word.GetCount() << " times." << endl; return 0; }