]> git.lyx.org Git - lyx.git/blob - src/SpellBase.C
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / SpellBase.C
1 /**
2  * \file SpellBase.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "SpellBase.h"
15 #include "gettext.h"
16
17 using lyx::docstring;
18
19 using std::string;
20
21
22 bool SpellBase::alive()
23 {
24         return false;
25 }
26
27
28 SpellBase::Result SpellBase::check(WordLangTuple const &)
29 {
30         return UNKNOWN_WORD;
31 }
32
33
34 void SpellBase::insert(WordLangTuple const &)
35 {}
36
37
38 void SpellBase::accept(WordLangTuple const &)
39 {}
40
41
42 string const SpellBase::nextMiss()
43 {
44         return string();
45 }
46
47
48 docstring const SpellBase::error()
49 {
50         return _("Native OS API not yet supported.");
51 }