GObject-Plugin/test/plugins/typeA/typeA2/TypeA2.vala

34 lines
544 B
Vala

using GObject.Plugins;
/**
* Plugin of type A2.
*/
public class TypeA2 : PluginTypeA {
/**
* Constructs a new ``TypeA2``.
*/
construct {
stdout.puts ("TypeA2 init () called\n");
}
/**
* Destroys the ``TypeA2``.
*/
~TypeA2 () {
stdout.puts ("TypeA2 deinit () called\n");
}
/**
* Any abstract method realization for PluginTypeA.
*/
public override void method_a () {
stdout.puts ("TypeA2.method_a () called\n");
}
}
[ModuleInit]
public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeA2);
}