#ifndef DICTIONARY_H #define DICTIONARY_H #include "word.h" #include #include #include #define MAXLEN 30 using std::vector; using std::filesystem::path; class Dictionary { public: Dictionary(); bool contains(const std::string &word) const; std::vector get_suggestions(const std::string &word) const; int slurp(path p); int spit(path p); private: vector words[MAXLEN]; }; #endif