docs: add class and method parameter descriptions to ecore_idler class

This commit is contained in:
Stefan Schmidt 2016-04-14 17:10:05 +02:00
parent bd98b51717
commit f9189fea78
1 changed files with 7 additions and 2 deletions

View File

@ -2,14 +2,19 @@ import ecore_types;
class Ecore.Idler (Eo.Base)
{
[[Setup callbacks to be called when the program is in idle state.
Once the mainloop has called all enterer handlers it calls the registered
idler callbacks.
]]
eo_prefix: ecore_idler;
methods {
constructor {
[[Constructor.]]
legacy: null;
params {
@in func: Ecore_Task_Cb;
@in data: const(void)*;
@in func: Ecore_Task_Cb; [[Idler callback function.]]
@in data: const(void)*; [[Private data passed to callback functions.]]
}
}
}