class GirFFI::UserDataArgumentInfo

Class to represent the info for the user data argument of a signal handler. Implements the necessary parts of IArgumentInfo's interface.

Attributes

argument_type[R]

Public Class Methods

new(type) click to toggle source
# File lib/gir_ffi/user_data_argument_info.rb, line 7
def initialize(type)
  @argument_type = type
end

Public Instance Methods

direction() click to toggle source
# File lib/gir_ffi/user_data_argument_info.rb, line 11
def direction
  :in
end
name() click to toggle source
# File lib/gir_ffi/user_data_argument_info.rb, line 19
def name
  '_user_data'
end
skip?() click to toggle source
# File lib/gir_ffi/user_data_argument_info.rb, line 15
def skip?
  false
end