SpellingChecker.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. #include "WordList.h"
  21. #include "Collection.h"
  22. #include "SpellingChecker_def.h"
  23. autoSpellingChecker WordList_upto_SpellingChecker (WordList me);
  24. autoWordList SpellingChecker_extractWordList (SpellingChecker me);
  25. void SpellingChecker_replaceWordList (SpellingChecker me, WordList list);
  26. autoStringSet SpellingChecker_extractUserDictionary (SpellingChecker me);
  27. void SpellingChecker_replaceUserDictionary (SpellingChecker me, StringSet userDictionary);
  28. bool SpellingChecker_isWordAllowed (SpellingChecker me, conststring32 word);
  29. char32 * SpellingChecker_nextNotAllowedWord (SpellingChecker me, conststring32 sentence, integer *start);
  30. void SpellingChecker_addNewWord (SpellingChecker me, conststring32 word);
  31. /* End of file SpellingChecker.h */
  32. #endif