22 lines
402 B
C++
22 lines
402 B
C++
#include <string>
|
|
#include <vector>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include "word.h"
|
|
#include "dictionary.h"
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
Dictionary::Dictionary() {
|
|
}
|
|
|
|
bool Dictionary::contains(const string& word) const {
|
|
return true;
|
|
}
|
|
|
|
vector<string> Dictionary::get_suggestions(const string& word) const {
|
|
vector<string> suggestions;
|
|
return suggestions;
|
|
}
|