efl/src/lib/ecore/ecore_idler.eo

21 lines
347 B
Plaintext
Raw Normal View History

class Ecore.Idler (Eo.Base)
2014-03-23 07:20:37 -07:00
{
eo_prefix: ecore_idler;
methods {
constructor {
/*@ Constructor. */
legacy: null;
2014-03-23 07:20:37 -07:00
params {
@in Ecore_Task_Cb func;
@in const(void)* data;
2014-03-23 07:20:37 -07:00
}
}
}
implements {
Eo.Base.destructor;
2014-03-23 07:20:37 -07:00
}
constructors {
.constructor;
}
}