In progress...

This commit is contained in:
Kolan Sh 2016-04-03 16:56:51 +03:00
parent 3fe8c2cf27
commit 4e30ad10f6

View File

@ -2,10 +2,11 @@ using LAview, Core, GObject.Plugins;
extern const string GETTEXT_PACKAGE; extern const string GETTEXT_PACKAGE;
/** namespace LAview.Core.Plugins {
/**
* Plugin of type A1. * Plugin of type A1.
*/ */
public class PluginDataExample : PluginData { public class PluginDataExample : PluginData {
/** /**
* Constructs a new ``PluginDataExample``. * Constructs a new ``PluginDataExample``.
@ -72,9 +73,10 @@ public class PluginDataExample : PluginData {
{ "U2d", "V2d", "W2d", "X2d", "Y2d"}, { "U2d", "V2d", "W2d", "X2d", "Y2d"},
}; };
} }
} }
[ModuleInit] [ModuleInit]
Type plugin_init (GLib.TypeModule type_module) { Type plugin_init (GLib.TypeModule type_module) {
return typeof (PluginDataExample); return typeof (PluginDataExample);
}
} }