//------------------------------------------------------------------- // File :dictionary.h // Author :Alicia Thorsen // Course :CS1129 // // Prototypes for functions which handle the dictionary. //------------------------------------------------------------------- #ifndef DICTIONARY_H #define DICTIONARY_H #include "board.h" #include using namespace std; //Reads dictionary from file and returns it in an array string * loadDictionary(int &); //Checks if a word is in the solution int inSolution(string, string [], int); //Shows word the player did not find void showMissedWords(string [], int, bool []); //Find all words in dictionary that's on the board string * getSolution(char [][SIZE], string [], int, int &); //Resize solution array string * resize(string [], int &); #endif