summaryrefslogtreecommitdiff
path: root/src/lib/ecore/ecore_idle_enterer.eo
blob: f28ca7eba289aa9c72bca310d4c45274854b7bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class Ecore.Idle.Enterer (Eo.Base)
{
   eo_prefix: ecore_idle_enterer;
   methods {
      before_constructor {
         /*@ Contructor. Will insert the handler at the beginning of the list. */
         legacy: null;
         params {
            @in Ecore_Task_Cb func;
            @in const(void)* data;
         }
      }
      after_constructor {
         /*@ Contructor. Will insert the handler at the end of the list. */
         legacy: null;
         params {
            @in Ecore_Task_Cb func;
            @in const(void)* data;
         }
      }
   }
   implements {
      Eo.Base.constructor;
      Eo.Base.destructor;
   }
   constructors {
      .before_constructor;
      .after_constructor;
   }
}