Class: Rex::PeParsey::PeBase::RelocationDirectory
- Inherits:
-
Object
- Object
- Rex::PeParsey::PeBase::RelocationDirectory
- Defined in:
- lib/rex/peparsey/pebase.rb
Instance Attribute Summary collapse
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#rva ⇒ Object
Returns the value of attribute rva.
Instance Method Summary collapse
-
#initialize(rva, entries) ⇒ RelocationDirectory
constructor
A new instance of RelocationDirectory.
Constructor Details
#initialize(rva, entries) ⇒ RelocationDirectory
Returns a new instance of RelocationDirectory.
677 678 679 680 681 682 683 684 685 |
# File 'lib/rex/peparsey/pebase.rb', line 677 def initialize(rva, entries) self.rva = rva self.entries = entries self.name = name self.characteristics = chars self.timedate = timedate self.version = version self.entries = [] end |
Instance Attribute Details
#entries ⇒ Object
Returns the value of attribute entries.
675 676 677 |
# File 'lib/rex/peparsey/pebase.rb', line 675 def entries @entries end |
#rva ⇒ Object
Returns the value of attribute rva.
675 676 677 |
# File 'lib/rex/peparsey/pebase.rb', line 675 def rva @rva end |