File: i_value_info.rb

package info (click to toggle)
ruby-gir-ffi 0.16.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 924 kB
  • sloc: ruby: 6,849; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module GObjectIntrospection
  # Wraps a GIValueInfo struct.
  # Represents one of the enum values of an IEnumInfo.
  class IValueInfo < IBaseInfo
    def value
      Lib.g_value_info_get_value self
    end
  end
end