In progress...

This commit is contained in:
Kolan Sh 2016-04-01 03:04:03 +03:00
parent bbc985bb48
commit 773a15105c

View File

@ -43,7 +43,12 @@ public class PluginObjectExample : PluginObject {
* Compose the object.
*/
public override bool compose (Gee.HashMap<string, AnswerValue> answers) throws Error {
stdout.puts ("compose() called\n");
stdout.puts ("Compose() called\n");
foreach (var a in answers.entries) {
stdout.printf ("%s ", a.key);
}
stdout.putc ('\n');
return true;
}