Class: Indis::MachO::UUIDCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/indis-macho/command.rb

Overview

LC_UUID

Constant Summary

Constants inherited from Command

Command::CMD, Command::CMD_CLASS, Command::LC_REQ_DYLD

Instance Attribute Summary collapse

Attributes inherited from Command

#cmd, #length

Instance Method Summary collapse

Methods inherited from Command

class_of_command, #initialize

Constructor Details

This class inherits a constructor from Indis::MachO::Command

Instance Attribute Details

#UUIDObject (readonly)

Returns the value of attribute UUID.



259
260
261
# File 'lib/indis-macho/command.rb', line 259

def UUID
  @UUID
end

Instance Method Details

#process(payload) ⇒ Object



261
262
263
264
# File 'lib/indis-macho/command.rb', line 261

def process(payload)
  super(payload)
  @UUID = payload.read(16)
end