GObject-Plugin/test/plugins/typeB/typeB1/TypeB1.vala

35 lines
539 B
Vala

using GObject.Plugins;
/**
* Plugin of type B1.
*/
public class TypeB1 : PluginTypeB {
/**
* Constructs a new ``TypeB1``.
*/
construct {
stdout.puts ("TypeB1 init\n");
}
/**
* Destroys the ``TypeB1``.
*/
~Test () {
stdout.puts ("TypeB1 deinit\n");
}
/**
* Any virtual method for PluginTypeB.
*/
public override string method_b () {
stdout.puts ("TypeB1.method_b () called\n");
return "TypeB1 returned string";
}
}
[ModuleInit]
Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeB1);
}