Sha256: 01eca1afe15c0933828721730800997b7dd917a93d991566fce0df66006fb2c8
Contents?: true
Size: 625 Bytes
Versions: 14
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true require "gir_ffi/info_ext/full_type_name" module GirFFI # Represents a boxed type not found in the GIR, conforming, as needed, to the # interface of GObjectIntrospection::IUnionInfo and GObjectIntrospection::IStructInfo. class UnintrospectableBoxedInfo attr_reader :g_type def initialize(gtype) @g_type = gtype end def info_type :unintrospectable_boxed end def safe_name GObject.type_name g_type end DEFAULT_BOXED_NAMESPACE = "GLib" def namespace DEFAULT_BOXED_NAMESPACE end def fields [] end end end
Version data entries
14 entries across 14 versions & 1 rubygems