18 unsigned long long _id;
23 unsigned int _sentenceNumber;
24 unsigned char _lingIntegrity;
25 unsigned int _initWordLen;
26 std::string _normWord;
27 std::string _originWord;
28 unsigned short _posMask;
48 void setId (
const unsigned long long &
id ) { _id = id; }
49 void setBlack (
const unsigned char & black ) { _black = black; }
51 void setHCrc (
const unsigned int & hCrc32 ) { _hCrc32 = hCrc32; }
52 void setOffset (
const unsigned int & offset ) { _offset = offset; }
53 void setSentenceNumber(
const unsigned int & sentenceNumber ) { _sentenceNumber = sentenceNumber; }
54 void setLingIntegrity(
const unsigned char & lingIntegrity ) { _lingIntegrity = lingIntegrity; }
55 void setInitWordLen(
const unsigned int & initWordLen ) { _initWordLen = initWordLen; }
56 void setOriginWord(
const std::string & originWord ) { _originWord = originWord; }
57 void setNormWord(
const std::string & normWord ) { _normWord = normWord; }
58 void setPosMask(
const unsigned short & posMask) { _posMask = posMask; }
62 inline const unsigned long long &
getId ()
const {
return _id; }
63 inline const unsigned char &
getBlack ()
const {
return _black; }
65 inline const unsigned int &
getHCrc ()
const {
return _hCrc32; }
66 inline const unsigned int &
getOffset ()
const {
return _offset; }
70 inline const std::string &
getOriginWord ()
const {
return _originWord; }
71 inline const std::string &
getNormWord ()
const {
return _normWord; }
72 const unsigned short getPosMask()
const {
return _posMask; }