summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/hunspell/replist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SpellChecker/src/hunspell/replist.hxx')
-rw-r--r--plugins/SpellChecker/src/hunspell/replist.hxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/SpellChecker/src/hunspell/replist.hxx b/plugins/SpellChecker/src/hunspell/replist.hxx
deleted file mode 100644
index de439cd362..0000000000
--- a/plugins/SpellChecker/src/hunspell/replist.hxx
+++ /dev/null
@@ -1,30 +0,0 @@
-/* string replacement list class */
-#ifndef _REPLIST_HXX_
-#define _REPLIST_HXX_
-
-#include "hunvisapi.h"
-
-#include "w_char.hxx"
-
-class LIBHUNSPELL_DLL_EXPORTED RepList
-{
-private:
- RepList(const RepList&);
- RepList& operator = (const 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