Sha256: 60932bbb2346a2dcf32b47f4ebfc483c78c741cd423ad5e3c651f80c869bb134
Contents?: true
Size: 486 Bytes
Versions: 10
Compression:
Stored size: 486 Bytes
Contents
module GirFFI # Class to represent the info for the receiver argument of a callback or # signal handler. Implements the necessary parts of IArgumentInfo's # interface. class ReceiverArgumentInfo attr_reader :argument_type def initialize(type) @argument_type = type end def direction :in end def ownership_transfer # FIXME: Make an informed choice for this. :everything end def name '_instance' end end end
Version data entries
10 entries across 10 versions & 1 rubygems