efl/src/lib/ecore/ecore_animator.eo

30 lines
642 B
Plaintext
Raw Normal View History

class Ecore.Animator (Eo.Base)
2014-03-24 04:23:14 -07:00
{
eo_prefix: ecore_animator;
methods {
timeline_constructor @constructor {
/*@ Constructor. */
legacy: null;
2014-03-24 04:23:14 -07:00
params {
@in double runtime;
@in Ecore_Timeline_Cb func;
@in const(void)* data;
2014-03-24 04:23:14 -07:00
}
}
constructor @constructor {
/*@ Constructor. */
legacy: null;
2014-03-24 04:23:14 -07:00
params {
@in Ecore_Task_Cb func;
@in const(void)* data;
2014-03-24 04:23:14 -07:00
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Eo.Base.event_freeze;
Eo.Base.event_thaw;
2014-03-24 04:23:14 -07:00
}
}