Class: MachO::SubLibraryCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::SubLibraryCommand
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#sub_library ⇒ Object
readonly
Returns the value of attribute sub_library.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, sub_library) ⇒ SubLibraryCommand
constructor
A new instance of SubLibraryCommand.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, sub_library) ⇒ SubLibraryCommand
Returns a new instance of SubLibraryCommand.
383 384 385 386 |
# File 'lib/macho/load_commands.rb', line 383 def initialize(offset, cmd, cmdsize, sub_library) super(offset, cmd, cmdsize) @sub_library = sub_library end |
Instance Attribute Details
#sub_library ⇒ Object (readonly)
Returns the value of attribute sub_library.
378 379 380 |
# File 'lib/macho/load_commands.rb', line 378 def sub_library @sub_library end |