1 #ifndef _SpellingChecker_h_
2 #define _SpellingChecker_h_
3 /* SpellingChecker.h
4  *
5  * Copyright (C) 1999-2011,2015,2017 Paul Boersma
6  *
7  * This code is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or (at
10  * your option) any later version.
11  *
12  * This code is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  * See the GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this work. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #include "WordList.h"
22 #include "Collection.h"
name() const23 
24 #include "SpellingChecker_def.h"
25 
26 autoSpellingChecker WordList_upto_SpellingChecker (WordList me);
27 autoWordList SpellingChecker_extractWordList (SpellingChecker me);
28 void SpellingChecker_replaceWordList (SpellingChecker me, WordList list);
29 autoStringSet SpellingChecker_extractUserDictionary (SpellingChecker me);
30 void SpellingChecker_replaceUserDictionary (SpellingChecker me, StringSet userDictionary);
31 
32 bool SpellingChecker_isWordAllowed (SpellingChecker me, conststring32 word);
33 char32 * SpellingChecker_nextNotAllowedWord (SpellingChecker me, conststring32 sentence, integer *start);
34 
35 void SpellingChecker_addNewWord (SpellingChecker me, conststring32 word);
36 
37 /* End of file SpellingChecker.h */
38 #endif
39