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.
680 681 682 683 684 685 686 687 688 |
# File 'lib/rex/peparsey/pebase.rb', line 680 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.
678 679 680 |
# File 'lib/rex/peparsey/pebase.rb', line 678 def entries @entries end |
#rva ⇒ Object
Returns the value of attribute rva.
678 679 680 |
# File 'lib/rex/peparsey/pebase.rb', line 678 def rva @rva end |