| 100 | return m_value.GetValue(); |
| 101 | } |
| 102 | bool ValueBitSet::GetBit |
| 103 | ( |
| 104 | uint8 _idx |
| 105 | ) const |
| 106 | { |
| 107 | if (isValidBit(_idx)) |
| 108 | return m_value.IsSet(_idx-1); |
| 109 | Log::Write(LogLevel_Warning, m_id.GetNodeId(), "GetBit Index %d is not valid with BitMask %d", _idx, m_BitMask); |
| 110 | return false; |
| 111 | |
| 112 | } |
| 113 | |
| 114 | |
| 115 |
no test coverage detected