| 21 | } |
| 22 | |
| 23 | std::vector<bool> |
| 24 | SpellerInterface::check_words(const std::vector<WordForSpeller> &words) const { |
| 25 | std::vector<bool> ret; |
| 26 | ret.resize(words.size()); |
| 27 | for (int i = 0; i < static_cast<int>(words.size()); ++i) |
| 28 | ret[i] = check_word(words[i]); |
| 29 | return ret; |
| 30 | } |
| 31 | |
| 32 | std::vector<LanguageInfo> DummySpeller::get_language_list() const { return {}; } |
| 33 |