summaryrefslogtreecommitdiff
path: root/vendor/github.com/gotk3/gotk3/glib/glib_extension.go
blob: f96286a42fa5e646213caba2a7f866ba6a85aa1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//glib_extension contains definitions and functions to interface between glib/gtk/gio and go universe

package glib

import (
	"reflect"
)

// Should be implemented by  any class which need special conversion like
// gtk.Application -> gio.Application
type IGlibConvert interface {
	//  If conversion can't be done, the function has to panic with a message that it can't convert to type
	Convert(reflect.Type) reflect.Value
}

var (
	IGlibConvertType reflect.Type
)