Class: GirFFI::UnintrospectableBoxedInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/gir_ffi/unintrospectable_boxed_info.rb

Overview

Represents a boxed type not found in the GIR, conforming, as needed, to the interface of GObjectIntrospection::IUnionInfo and GObjectIntrospection::IStructInfo.

Constant Summary collapse

DEFAULT_BOXED_NAMESPACE =
'GLib'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(gtype) ⇒ UnintrospectableBoxedInfo

Returns a new instance of UnintrospectableBoxedInfo.



9
10
11
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 9

def initialize(gtype)
  @g_type = gtype
end

Instance Attribute Details

#g_typeObject (readonly)

Returns the value of attribute g_type.



7
8
9
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 7

def g_type
  @g_type
end

Instance Method Details

#fieldsObject



27
28
29
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 27

def fields
  []
end

#info_typeObject



13
14
15
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 13

def info_type
  :unintrospectable_boxed
end

#namespaceObject



23
24
25
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 23

def namespace
  DEFAULT_BOXED_NAMESPACE
end

#safe_nameObject



17
18
19
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 17

def safe_name
  GObject.type_name g_type
end