blob: 664fc6387fe3904a9cfb1487de8d53c777d5909c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* Copyright (c) 2011 Vlad Voicu
* Licensed under the Simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
/*
* Copyright (c) 2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <vector>
#include <SwifTools/SpellParser.h>
namespace Swift {
class SpellChecker {
public:
SpellChecker() {
}
virtual ~SpellChecker() {
}
virtual bool isAutomaticallyDetectingLanguage() = 0;
virtual void setActiveLanguage(const std::string& language) = 0;
virtual std::string activeLanguage() const = 0;
virtual std::vector<std::string> supportedLanguages() const = 0;
virtual bool isCorrect(const std::string& word) = 0;
virtual void getSuggestions(const std::string& word, std::vector<std::string>& list) = 0;
virtual void checkFragment(const std::string& fragment, PositionPairList& misspelledPositions) = 0;
protected:
SpellParser parser_;
};
}
|