| 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); |
| 879 | } |
| 880 | |
| 881 | virtual ~EntryReader() {} |
| 882 |
nothing calls this directly
no test coverage detected