| 77 | } |
| 78 | |
| 79 | FilesContainerR::TReader FilesContainerR::GetReader(Tag const & tag) const |
| 80 | { |
| 81 | TagInfo const * p = GetInfo(tag); |
| 82 | if (!p) |
| 83 | MYTHROW(Reader::OpenException, ("Can't find section:", GetFileName(), tag)); |
| 84 | return m_source.SubReader(p->m_offset, p->m_size); |
| 85 | } |
| 86 | |
| 87 | std::pair<uint64_t, uint64_t> FilesContainerR::GetAbsoluteOffsetAndSize(Tag const & tag) const |
| 88 | { |