Class: Rex::PeParsey::PeBase::ExportDirectory
- Inherits:
-
Object
- Object
- Rex::PeParsey::PeBase::ExportDirectory
- Defined in:
- lib/rex/peparsey/pebase.rb
Instance Attribute Summary collapse
-
#base ⇒ Object
Returns the value of attribute base.
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(_name, _entries, _base) ⇒ ExportDirectory
constructor
A new instance of ExportDirectory.
Constructor Details
#initialize(_name, _entries, _base) ⇒ ExportDirectory
Returns a new instance of ExportDirectory.
297 298 299 300 301 |
# File 'lib/rex/peparsey/pebase.rb', line 297 def initialize(_name, _entries, _base) self.name = _name self.entries = _entries self.base = _base end |
Instance Attribute Details
#base ⇒ Object
Returns the value of attribute base.
295 296 297 |
# File 'lib/rex/peparsey/pebase.rb', line 295 def base @base end |
#entries ⇒ Object
Returns the value of attribute entries.
295 296 297 |
# File 'lib/rex/peparsey/pebase.rb', line 295 def entries @entries end |
#name ⇒ Object
Returns the value of attribute name.
295 296 297 |
# File 'lib/rex/peparsey/pebase.rb', line 295 def name @name end |