plugin-bar.vala 210 B

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