labs-edaf30/lab2/dictionary.h
Sven Gestegard Robertz e4df45f4a9 imported lab skeletons
2021-10-27 15:39:22 +02:00

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