Class: MachO::LinkerOptionCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::LinkerOptionCommand
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#count ⇒ Object
readonly
Returns the value of attribute count.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, count) ⇒ LinkerOptionCommand
constructor
A new instance of LinkerOptionCommand.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, count) ⇒ LinkerOptionCommand
Returns a new instance of LinkerOptionCommand.
558 559 560 561 |
# File 'lib/macho/load_commands.rb', line 558 def initialize(offset, cmd, cmdsize, count) super(offset, cmd, cmdsize) @count = count end |
Instance Attribute Details
#count ⇒ Object (readonly)
Returns the value of attribute count.
553 554 555 |
# File 'lib/macho/load_commands.rb', line 553 def count @count end |