Molybden
Loading...
Searching...
No Matches
dictionary.hpp
1// Copyright (c) 2000-2023 TeamDev Ltd. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOLYBDEN_DICTIONARY_HPP
6#define MOLYBDEN_DICTIONARY_HPP
7
8#include <vector>
9#include <string>
10
11namespace molybden {
12
21 virtual std::vector<std::string> words() = 0;
22
26 virtual bool addWord(const std::string& word) = 0;
27
31 virtual bool removeWord(const std::string& word) = 0;
32
36 virtual bool hasWord(const std::string& word) = 0;
37};
38} // namespace molybden
39
40#endif // MOLYBDEN_DICTIONARY_HPP
Provides functionality for working with a spell check dictionary.
Definition dictionary.hpp:16