| 53 | } |
| 54 | |
| 55 | inline unique_ptr<Reader> CreateSubReader(uint64_t pos, uint64_t size) const override |
| 56 | { |
| 57 | CheckPosAndSize(pos, size); |
| 58 | return make_unique<SecureMemReader>(m_pData + pos, static_cast<size_t>(size)); |
| 59 | } |
| 60 | |
| 61 | private: |
| 62 | char const * m_pData; |
no outgoing calls
no test coverage detected