summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_frame_legacy_eo.c
blob: ca10f87b8a5da16f3dca4596e7a87ce8d1123047 (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
31
32
33
34
35

Efl_Object *_efl_ui_frame_legacy_efl_object_constructor(Eo *obj, void *pd);


static Eina_Bool
_efl_ui_frame_legacy_class_initializer(Efl_Class *klass)
{
   const Efl_Object_Ops *opsp = NULL;

   const Efl_Object_Property_Reflection_Ops *ropsp = NULL;

#ifndef EFL_UI_FRAME_LEGACY_EXTRA_OPS
#define EFL_UI_FRAME_LEGACY_EXTRA_OPS
#endif

   EFL_OPS_DEFINE(ops,
      EFL_OBJECT_OP_FUNC(efl_constructor, _efl_ui_frame_legacy_efl_object_constructor),
      EFL_UI_FRAME_LEGACY_EXTRA_OPS
   );
   opsp = &ops;

   return efl_class_functions_set(klass, opsp, ropsp);
}

static const Efl_Class_Description _efl_ui_frame_legacy_class_desc = {
   EO_VERSION,
   "Efl.Ui.Frame_Legacy",
   EFL_CLASS_TYPE_REGULAR,
   0,
   _efl_ui_frame_legacy_class_initializer,
   _efl_ui_frame_legacy_class_constructor,
   NULL
};

EFL_DEFINE_CLASS(efl_ui_frame_legacy_class_get, &_efl_ui_frame_legacy_class_desc, EFL_UI_FRAME_CLASS, ELM_LAYOUT_MIXIN, EFL_UI_LEGACY_INTERFACE, NULL);