class GirFFI::Builder::StrvInOutArgument

Implements argument processing for strv arguments with direction :inout.

Public Instance Methods

post() click to toggle source
# File lib/gir_ffi/builder/argument.rb, line 378
def post
  [ "#{retname} = GLib::Strv.wrap(#{callarg}.to_value)" ]
end
pre() click to toggle source
# File lib/gir_ffi/builder/argument.rb, line 374
def pre
  [ "#{callarg} = GirFFI::InOutPointer.from #{type_specification}, #{@name}" ]
end