Method: VirtualBox::COM::AbstractImplementer#initialize

Defined in:
lib/virtualbox/com/abstract_implementer.rb

#initialize(interface, lib) ⇒ AbstractImplementer

Initializes an implementer for the given VirtualBox::COM::AbstractInterface. The implementor’s other methods, such as #read_property or #call_function are responsible for executing the said action on the interface.

Parameters:



19
20
21
22
# File 'lib/virtualbox/com/abstract_implementer.rb', line 19

def initialize(interface, lib)
  @interface = interface
  @lib = lib
end