20 explicit TrafficClass(uint8_t raw);
22 bool store_carry_forward()
const;
23 void store_carry_forward(
bool flag);
24 bool channel_offload()
const;
25 void channel_offload(
bool flag);
28 uint8_t raw()
const {
return m_tc; }
31 static constexpr uint8_t scf_mask = 0x80;
32 static constexpr uint8_t channel_offload_mask = 0x40;
33 static constexpr uint8_t tc_id_mask = 0x3f;