| 90 | {} |
| 91 | |
| 92 | void write(const SnapshotData::DumpRecord& record) |
| 93 | { |
| 94 | const offset_t offset = tempSpace.getSize(); |
| 95 | const ULONG length = record.getLength(); |
| 96 | tempSpace.write(offset, &length, sizeof(ULONG)); |
| 97 | tempSpace.write(offset + sizeof(ULONG), record.getData(), length); |
| 98 | } |
| 99 | |
| 100 | private: |
| 101 | TempSpace& tempSpace; |