mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 21:04:09 +00:00
29 lines
535 B
C++
29 lines
535 B
C++
|
#ifndef _BASEAFF_HXX_
|
||
|
#define _BASEAFF_HXX_
|
||
|
|
||
|
class AffEntry
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
protected:
|
||
|
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
|