1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-01 21:05:36 +03:00
parent c1b075cb3a
commit 78e68d9f33
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,6 @@ public class PluginObjectExample : PluginObject {
*/
construct {
stdout.puts ("PluginObjectExample init () called\n");
data_obj_ex = (host as IHostCore).get_data_object ("DataExample") as PluginDataExample;
}
/**
@ -39,6 +38,7 @@ public class PluginObjectExample : PluginObject {
stdout.puts ("Call IHostCore.get_cache_dir () from PluginObjectExample:\n ");
var cache_dir = (host as IHostCore).get_cache_dir ();
stdout.printf ("cache dir = %s\n", cache_dir);
data_obj_ex = (host as IHostCore).get_data_object ("DataExample") as PluginDataExample;
return _("Protocol Object Example");
}