efl/src/lib/ecore/ecore_job.eo

18 lines
303 B
Plaintext
Raw Normal View History

class Ecore.Job (Eo.Base)
2014-03-23 07:02:19 -07:00
{
eo_prefix: ecore_job;
constructors {
constructor {
/*@ Contructor. */
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
}
}