]> git.lyx.org Git - lyx.git/blob - src/HunspellChecker.h
* Rename HunspellSpellChecker to HunspellChecker and ASpell to AspellChecker for...
[lyx.git] / src / HunspellChecker.h
1 // -*- C++ -*-
2 /**
3  * \file HunspellChecker.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_HUNSPELL_H
13 #define LYX_HUNSPELL_H
14
15 #include "SpellChecker.h"
16
17 namespace lyx {
18
19
20 class HunspellChecker : public SpellChecker
21 {
22 public:
23         HunspellChecker();
24         ~HunspellChecker();
25
26         SpellChecker::Result check(WordLangTuple const &);
27         void insert(WordLangTuple const &);
28         void accept(WordLangTuple const &);
29         docstring const nextMiss();
30         docstring const error();
31
32 private:
33         struct Private;
34         Private * d;
35 };
36
37
38 } // namespace lyx
39
40 #endif // LYX_Hunspell_H