Class: XcodeArchiveCache::Modulemap::HeaderPathDeclaration

Inherits:
Object
  • Object
show all
Defined in:
lib/modulemap/header_path_extractor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, path) ⇒ HeaderPathDeclaration

Returns a new instance of HeaderPathDeclaration.

Parameters:

  • type (String)
  • path (String)


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

#pathString (readonly)

Returns:

  • (String)


10
11
12
# File 'lib/modulemap/header_path_extractor.rb', line 10

def path
  @path
end

#typeString (readonly)

Returns:

  • (String)


6
7
8
# File 'lib/modulemap/header_path_extractor.rb', line 6

def type
  @type
end