efl/src/lib/ecore/ecore_job.eo

19 lines
335 B
Plaintext
Raw Normal View History

class Ecore.Job (Eo.Base)
2014-03-23 07:02:19 -07:00
{
eo_prefix: ecore_job;
methods {
constructor @constructor {
/*@ Constructor. */
legacy: null;
2014-03-23 07:02:19 -07:00
params {
@in Ecore_Cb func;
@in const(void)* data;
2014-03-23 07:02:19 -07:00
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
2014-03-23 07:02:19 -07:00
}
}