]> git.lyx.org Git - lyx.git/blob - src/SpellBase.cpp
Rename .C ==> .cpp for files in src/
[lyx.git] / src / SpellBase.cpp
1 /**
2  * \file SpellBase.cpp
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
18 namespace lyx {
19
20 using std::string;
21
22
23 bool SpellBase::alive()
24 {
25         return false;
26 }
27
28
29 SpellBase::Result SpellBase::check(WordLangTuple const &)
30 {
31         return UNKNOWN_WORD;
32 }
33
34
35 void SpellBase::insert(WordLangTuple const &)
36 {}
37
38
39 void SpellBase::accept(WordLangTuple const &)
40 {}
41
42
43 docstring const SpellBase::nextMiss()
44 {
45         return docstring();
46 }
47
48
49 docstring const SpellBase::error()
50 {
51         return _("Native OS API not yet supported.");
52 }
53
54
55 } // namespace lyx