Sha256: e7c6aca398d5470819d05d9679d89f23ecdb02af328f6f6cdcef773d96eecf65
Contents?: true
Size: 542 Bytes
Versions: 14
Compression:
Stored size: 542 Bytes
Contents
# frozen_string_literal: true module GirFFI # Class to represent the info for the receiver argument of a callback or # signal handler. Implements the necessary parts of IArgInfo's # interface. class ReceiverArgumentInfo attr_reader :argument_type def initialize(type) @argument_type = type end def direction :in end # Assume we don't need to increase the refcount for the receiver argument. def ownership_transfer :everything end def name "_instance" end end end
Version data entries
14 entries across 14 versions & 1 rubygems