Class: Rex::PeParsey::PeBase::ExportEntry
- Inherits:
-
Object
- Object
- Rex::PeParsey::PeBase::ExportEntry
- Defined in:
- lib/rex/peparsey/pebase.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#ordinal ⇒ Object
Returns the value of attribute ordinal.
-
#rva ⇒ Object
Returns the value of attribute rva.
Instance Method Summary collapse
-
#initialize(_name, _ordinal, _rva) ⇒ ExportEntry
constructor
A new instance of ExportEntry.
Constructor Details
#initialize(_name, _ordinal, _rva) ⇒ ExportEntry
Returns a new instance of ExportEntry.
306 307 308 309 310 |
# File 'lib/rex/peparsey/pebase.rb', line 306 def initialize(_name, _ordinal, _rva) self.name = _name self.ordinal = _ordinal self.rva = _rva end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
305 306 307 |
# File 'lib/rex/peparsey/pebase.rb', line 305 def name @name end |
#ordinal ⇒ Object
Returns the value of attribute ordinal.
305 306 307 |
# File 'lib/rex/peparsey/pebase.rb', line 305 def ordinal @ordinal end |
#rva ⇒ Object
Returns the value of attribute rva.
305 306 307 |
# File 'lib/rex/peparsey/pebase.rb', line 305 def rva @rva end |