GhidraRPXLoader/src/main/java/ghidra/app/util/bin/format/elf/RplSectionHeader.java

13 lines
401 B
Java
Raw Normal View History

2019-10-01 22:17:18 +02:00
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);
}
}