class MachO::LoadCommands::SubFrameworkCommand

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

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

umbrella[R]

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

Public Class Methods

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

@api private

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