class Pliney::MachO::DylibStructReader
Attributes
compatibility_version[R]
current_version[R]
offset[R]
timestamp[R]
Public Instance Methods
parse()
click to toggle source
Calls superclass method
Pliney::MachO::Reader::parse
# File lib/pliney/macho.rb, line 508 def parse() super() @offset = @fh.read_uint32le @timestamp = @fh.read_uint32le @current_version = @fh.read_uint32le @compatibility_version = @fh.read_uint32le end