In progress...
This commit is contained in:
parent
c1b075cb3a
commit
78e68d9f33
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue