355 menuid_t
getId()
const;
371 void setChanged(
int num,
bool changed) { bitWrite(flags, (num & 3), changed); }
373 bool isChanged(
int num = 0)
const {
return bitRead(flags, (num & 3)); }
448 this->whole = this->fraction = this->negative = 0;
452 this->whole = that.whole;
453 this->fraction = that.fraction;
454 this->negative = that.negative;
459 this->fraction = fract;
460 this->negative = negative;
463 uint32_t fraction: 16;
464 uint32_t negative: 1;