diff options
Diffstat (limited to 'plugins/SpellChecker/hunspell/replist.hxx')
-rw-r--r-- | plugins/SpellChecker/hunspell/replist.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/SpellChecker/hunspell/replist.hxx b/plugins/SpellChecker/hunspell/replist.hxx new file mode 100644 index 0000000000..1cc039ebeb --- /dev/null +++ b/plugins/SpellChecker/hunspell/replist.hxx @@ -0,0 +1,27 @@ +/* string replacement list class */ +#ifndef _REPLIST_HXX_ +#define _REPLIST_HXX_ + +#include "hunvisapi.h" + +#include "w_char.hxx" + +class LIBHUNSPELL_DLL_EXPORTED RepList +{ +protected: + replentry ** dat; + int size; + int pos; + +public: + RepList(int n); + ~RepList(); + + int get_pos(); + int add(char * pat1, char * pat2); + replentry * item(int n); + int findnear(const char * word); + int match(const char * word, int n); + int conv(const char * word, char * dest); +}; +#endif |