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.
300 301 302 303 304 |
# File 'lib/rex/peparsey/pebase.rb', line 300 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.
298 299 300 |
# File 'lib/rex/peparsey/pebase.rb', line 298 def base @base end |
#entries ⇒ Object
Returns the value of attribute entries.
298 299 300 |
# File 'lib/rex/peparsey/pebase.rb', line 298 def entries @entries end |
#name ⇒ Object
Returns the value of attribute name.
298 299 300 |
# File 'lib/rex/peparsey/pebase.rb', line 298 def name @name end |