364 menuid_t
getId()
const;
380 void setChanged(
int num,
bool changed) { bitWrite(flags, (num & 3), changed); }
382 bool isChanged(
int num = 0)
const {
return bitRead(flags, (num & 3)); }
457 this->whole = this->fraction = this->negative = 0;
461 this->whole = that.whole;
462 this->fraction = that.fraction;
463 this->negative = that.negative;
468 this->fraction = fract;
469 this->negative = negative;
472 uint32_t fraction: 16;
473 uint32_t negative: 1;