blob: ff6e3343c0fb43120000c3ab9507c488323b7de7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
[ModuleInit]
public GLib.Type plugin_init (GLib.TypeModule tm) {
return typeof (Bar.Plugin);
}
public class Bar.Plugin : Foo.Plugin, GLib.Object {
public string bar () {
return "bar";
}
}
|