Class: XcodeArchiveCache::Modulemap::HeaderPathDeclaration
- Inherits:
-
Object
- Object
- XcodeArchiveCache::Modulemap::HeaderPathDeclaration
- Defined in:
- lib/modulemap/header_path_extractor.rb
Instance Attribute Summary collapse
- #path ⇒ String readonly
- #type ⇒ String readonly
Instance Method Summary collapse
-
#initialize(type, path) ⇒ HeaderPathDeclaration
constructor
A new instance of HeaderPathDeclaration.
Constructor Details
#initialize(type, path) ⇒ HeaderPathDeclaration
Returns a new instance of HeaderPathDeclaration.
15 16 17 18 |
# File 'lib/modulemap/header_path_extractor.rb', line 15 def initialize(type, path) @type = type @path = path end |
Instance Attribute Details
#path ⇒ String (readonly)
10 11 12 |
# File 'lib/modulemap/header_path_extractor.rb', line 10 def path @path end |
#type ⇒ String (readonly)
6 7 8 |
# File 'lib/modulemap/header_path_extractor.rb', line 6 def type @type end |