efl/src/lib/ecore/efl_loop_user.eo

17 lines
432 B
Plaintext
Raw Normal View History

class Efl.Loop_User (Efl.Object)
2016-05-05 16:18:18 -07:00
{
[[An Efl.Loop_User is a class that require one of the parent to provide
an Efl.Loop interface when doing provider_find. It will enforce this by
only allowing parent that provide such interface or NULL.]]
eo_prefix: efl_loop;
2016-05-05 16:18:18 -07:00
methods {
loop_get {
[[Get loop]]
return: Efl.Loop; [[Efl loop]]
2016-05-05 16:18:18 -07:00
}
}
implements {
Efl.Object.parent.set;
2016-05-05 16:18:18 -07:00
}
}