In progress...

This commit is contained in:
Kolan Sh 2016-04-03 16:59:44 +03:00
parent eedd116dba
commit a42429896e

View File

@ -2,10 +2,11 @@ using LAview, Core, Plugins, GObject.Plugins;
extern const string GETTEXT_PACKAGE;
/**
namespace LAview.Core.Plugins {
/**
* Plugin of type A1.
*/
public class PluginObjectExample : PluginObject {
public class PluginObjectExample : PluginObject {
/**
* Constructs a new ``PluginObjectExample``.
@ -53,9 +54,10 @@ public class PluginObjectExample : PluginObject {
return true;
}
}
}
[ModuleInit]
Type plugin_init (GLib.TypeModule type_module) {
[ModuleInit]
Type plugin_init (GLib.TypeModule type_module) {
return typeof (PluginObjectExample);
}
}