15 lines
263 B
C++
15 lines
263 B
C++
#ifndef DICTIONARY_H
|
|
#define DICTIONARY_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class Dictionary {
|
|
public:
|
|
Dictionary();
|
|
bool contains(const std::string& word) const;
|
|
std::vector<std::string> get_suggestions(const std::string& word) const;
|
|
private:
|
|
};
|
|
|
|
#endif
|