#pragma once #include "WordT.h" const int MAX_WORDS = 1000; class WordListT { public: WordListT(); void AddWord(std::string word); int WordCount(void) const; void FirstWord(); void NextWord(); bool PastLastWord(); void FindWord(std::string word); WordT GetWord(); void SetWord(WordT word); private: WordT words[MAX_WORDS]; int size; int current; };