| 50 | |
| 51 | |
| 52 | void BinaryWriter::Write(const void* src, size_t len) |
| 53 | { |
| 54 | if (!BNWriteData(m_stream, src, len)) |
| 55 | throw WriteException(); |
| 56 | } |
| 57 | |
| 58 | |
| 59 | void BinaryWriter::Write(const DataBuffer& buf) |
nothing calls this directly
no test coverage detected