namespace X86Disassembler.PE.Parsers;
///
/// Interface for PE format component parsers
///
/// The type of component to parse
public interface IParser
{
///
/// Parse a component from the binary reader
///
/// The binary reader positioned at the start of the component
/// The parsed component
T Parse(BinaryReader reader);
}