| 62 | } |
| 63 | |
| 64 | Elf64_Shdr* GetSectionBegin() const noexcept { |
| 65 | return reinterpret_cast<Elf64_Shdr*>(Begin + GetHeader()->e_shoff); |
| 66 | } |
| 67 | |
| 68 | Elf64_Shdr* GetSectionEnd() const noexcept { |
| 69 | return reinterpret_cast<Elf64_Shdr*>(Begin + GetHeader()->e_shoff) + GetSectionCount(); |