Sha256: 21d08f0c783cb5b421703b9b71d7a92ca0ded2be15fb3653144d7d77e38b2e86
Contents?: true
Size: 631 Bytes
Versions: 11
Compression:
Stored size: 631 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'.freeze def namespace DEFAULT_BOXED_NAMESPACE end def fields [] end end end
Version data entries
11 entries across 11 versions & 1 rubygems