BitRef128 class should not be used directly.
It is just a helper class for BitField128, so that we can do something like "bitField128[14] = true;"
#include <awUtilBitField128.h>
| Public Member Functions | |
| BitRef128 (BitField128 &, int) | |
| operator bool () const | |
| BitRef128 & | operator= (bool) | 
| BitRef128 & | operator= (const BitRef128 &) | 
| Protected Attributes | |
| BitField128 & | m_bitField | 
| int | m_bit | 
| BitRef128 | ( | BitField128 & | f, | 
| int | b | ||
| ) | [inline] | 
: m_bitField(f), m_bit(b) { }
| operator bool | ( | ) | const [inline] | 
{
    return m_bitField.testBit(m_bit);
}
| BitRef128 & operator= | ( | bool | b | ) | [inline] | 
{
    m_bitField.setBit(m_bit, b); return *this;
}
| BitField128& 
m_bitField [protected] | 
| int 
m_bit [protected] |