| 43 | int16_t StreamReader::readInt16() { return static_cast<int16_t>(readUInt16()); } |
| 44 | |
| 45 | uint32_t StreamReader::readUInt32() { return readUnsigned<uint32_t>(); } |
| 46 | |
| 47 | int32_t StreamReader::readInt32() { return static_cast<int32_t>(readUInt32()); } |
| 48 |