efl/src/lib/ecore/ecore_job.eo

22 lines
364 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. */
legacy: null;
2014-03-23 07:02:19 -07:00
params {
@in func: Ecore_Cb;
@in data: const(void)*;
2014-03-23 07:02:19 -07:00
}
}
}
implements {
Eo.Base.destructor;
Eo.Base.finalize;
2014-03-23 07:02:19 -07:00
}
constructors {
.constructor;
}
}