| 872 | class EntryReader : public zip_archive_lkchan::Reader { |
| 873 | public: |
| 874 | EntryReader(const MappedZipFile& zip_file, const ZipEntry* entry) |
| 875 | : Reader(), zip_file_(zip_file), entry_(entry) {} |
| 876 | |
| 877 | virtual bool ReadAtOffset(uint8_t* buf, size_t len, uint32_t offset) const { |
| 878 | return zip_file_.ReadAtOffset(buf, len, entry_->offset + offset); |
nothing calls this directly
no outgoing calls
no test coverage detected