summaryrefslogtreecommitdiff
path: root/plugins/SpellChecker/src/hunspell/dictmgr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SpellChecker/src/hunspell/dictmgr.hxx')
-rw-r--r--plugins/SpellChecker/src/hunspell/dictmgr.hxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/SpellChecker/src/hunspell/dictmgr.hxx b/plugins/SpellChecker/src/hunspell/dictmgr.hxx
deleted file mode 100644
index 692ed964c3..0000000000
--- a/plugins/SpellChecker/src/hunspell/dictmgr.hxx
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef _DICTMGR_HXX_
-#define _DICTMGR_HXX_
-
-#include "hunvisapi.h"
-
-#define MAXDICTIONARIES 100
-#define MAXDICTENTRYLEN 1024
-
-struct dictentry {
- char * filename;
- char * lang;
- char * region;
-};
-
-
-class LIBHUNSPELL_DLL_EXPORTED DictMgr
-{
-private:
- DictMgr(const DictMgr&);
- DictMgr& operator = (const DictMgr&);
-private:
- int numdict;
- dictentry * pdentry;
-
-public:
-
- DictMgr(const char * dictpath, const char * etype);
- ~DictMgr();
- int get_list(dictentry** ppentry);
-
-private:
- int parse_file(const char * dictpath, const char * etype);
- char * mystrsep(char ** stringp, const char delim);
- char * mystrdup(const char * s);
- void mychomp(char * s);
-
-};
-
-#endif