| 193 | |
| 194 | |
| 195 | uint16_t BinaryReader::ReadBE16() |
| 196 | { |
| 197 | uint16_t result; |
| 198 | if (!BNReadBE16(m_stream, &result)) |
| 199 | throw ReadException(); |
| 200 | return result; |
| 201 | } |
| 202 | |
| 203 | |
| 204 | uint32_t BinaryReader::ReadBE32() |
nothing calls this directly
no test coverage detected