class MachO::LoadCommands::SubUmbrellaCommand

A load command signifying membership of a subumbrella containing the name of an umbrella framework. Corresponds to LC_SUB_UMBRELLA.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

sub_umbrella[R]

@return [LCStr] the subumbrella framework name as an LCStr

Public Class Methods

new(view, cmd, cmdsize, sub_umbrella) click to toggle source

@api private

Calls superclass method MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 691
def initialize(view, cmd, cmdsize, sub_umbrella)
  super(view, cmd, cmdsize)
  @sub_umbrella = LCStr.new(self, sub_umbrella)
end