Aegisub/subprojects/hunspell/src/hunspell/baseaffix.hxx

33 lines
677 B
C++
Raw Normal View History

#ifndef _BASEAFF_HXX_
#define _BASEAFF_HXX_
2012-10-08 21:20:19 +02:00
#include "hunvisapi.h"
2012-10-08 21:20:19 +02:00
class LIBHUNSPELL_DLL_EXPORTED AffEntry
{
2014-06-25 18:28:25 +02:00
private:
AffEntry(const AffEntry&);
AffEntry& operator = (const AffEntry&);
protected:
2014-06-25 18:28:25 +02:00
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