| 54 | } |
| 55 | |
| 56 | void CompressedDataIndex::append(UInt64 compressed_offset, |
| 57 | UInt64 uncompressed_size) |
| 58 | { |
| 59 | checkWriteMode(); |
| 60 | |
| 61 | std::pair<UInt64, UInt64> entry(compressed_offset, uncompressed_size); |
| 62 | writeBinary(entry, *writer); |
| 63 | } |
| 64 | |
| 65 | void CompressedDataIndex::finalize() |
| 66 | { |