Method: CTypes::Exporter#initialize
- Defined in:
- lib/ctypes/exporter.rb
#initialize(output = "".dup) ⇒ Exporter
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Exporter.
10 11 12 13 14 15 |
# File 'lib/ctypes/exporter.rb', line 10 def initialize(output = "".dup) @output = output @indent = 0 @indented = false @type_lookup = nil end |