class MachO::LoadCommands::SubClientCommand

A load command signifying a shared library that is a subframework of an umbrella framework. Corresponds to LC_SUB_CLIENT.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

sub_client[R]

@return [LCStr] the subclient name as an LCStr

Public Class Methods

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

@api private

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