#ifndef DICTIONARY_H #define DICTIONARY_H #include #include class Dictionary { public: Dictionary(); bool contains(const std::string& word) const; std::vector get_suggestions(const std::string& word) const; private: }; #endif