Method: MachO::SubFrameworkCommand#initialize
- Defined in:
- lib/macho/load_commands.rb
#initialize(raw_data, offset, cmd, cmdsize, umbrella) ⇒ SubFrameworkCommand
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of SubFrameworkCommand.
528 529 530 531 |
# File 'lib/macho/load_commands.rb', line 528 def initialize(raw_data, offset, cmd, cmdsize, umbrella) super(raw_data, offset, cmd, cmdsize) @umbrella = LCStr.new(raw_data, self, umbrella) end |