summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_loop_consumer.eo
blob: e486567ed5c048888d93008800a43996bdf7a92c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Efl.Loop_Consumer (Efl.Object)
{
   [[An Efl.Loop_Consumer is a class which requires one of the parents to provide
     an Efl.Loop interface when performing provider_find. It will enforce this by
     only allowing parents which provide such an interface or NULL.]]
   eo_prefix: efl_loop;
   methods {
      @property loop {
         [[The loop to which this object belongs to.]]
         get {
            [[Gets a handle to the loop.]]
         }
         values {
            loop: Efl.Loop; [[Efl loop]]
         }
      }
   }
   implements {
      Efl.Object.parent { set; }
   }
}