* @brief Constructs ElfScanner class with the given ELF base address. * * @param elfBase The base address of the ELF file in memory. */
| 537 | * @param elfBase The base address of the ELF file in memory. |
| 538 | */ |
| 539 | inline ElfScanner createWithBase(uintptr_t elfBase) const |
| 540 | { |
| 541 | return !_pMem ? ElfScanner() : ElfScanner(_pMem, elfBase); |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * @brief Constructs ElfScanner class with the given process memory map info. |