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