GhidraRPXLoader/src/main/java/ghidra/app/util/bin/format/elf/RplSectionHeader.java
2019-10-02 20:46:41 +01:00

13 lines
401 B
Java

package ghidra.app.util.bin.format.elf;
import java.io.IOException;
import ghidra.app.util.bin.format.FactoryBundledWithBinaryReader;
public class RplSectionHeader extends ElfSectionHeader {
public static ElfSectionHeader createElfSectionHeader(FactoryBundledWithBinaryReader reader,
ElfHeader header) throws IOException {
return ElfSectionHeader.createElfSectionHeader(reader, header);
}
}