#ifndef _worldlookup_hpp_ #define _worldlookup_hpp_ #include #include #include #include #include #include #include using namespace std; class WordList{ list wordMap; public: WordList(); void loadList(string filename); const char* findWord(string mask); const char* findWordL(string mask, int length); const char* getWord(int nr); long size(); }; #endif //_worldlookup_hpp_