diff options
Diffstat (limited to 'plugins/SpellChecker/src/hunspell/baseaffix.hxx')
-rw-r--r-- | plugins/SpellChecker/src/hunspell/baseaffix.hxx | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/plugins/SpellChecker/src/hunspell/baseaffix.hxx b/plugins/SpellChecker/src/hunspell/baseaffix.hxx deleted file mode 100644 index f417acaa44..0000000000 --- a/plugins/SpellChecker/src/hunspell/baseaffix.hxx +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef _BASEAFF_HXX_ -#define _BASEAFF_HXX_ - -#include "hunvisapi.h" - -class LIBHUNSPELL_DLL_EXPORTED AffEntry -{ -private: - AffEntry(const AffEntry&); - AffEntry& operator = (const AffEntry&); -protected: - AffEntry() {} - char * appnd; - char * strip; - unsigned char appndl; - unsigned char stripl; - char numconds; - char opts; - unsigned short aflag; - union { - char conds[MAXCONDLEN]; - struct { - char conds1[MAXCONDLEN_1]; - char * conds2; - } l; - } c; - char * morphcode; - unsigned short * contclass; - short contclasslen; -}; - -#endif |