diff options
Diffstat (limited to 'src/lib/elementary/elm_code_widget_legacy_eo.c')
-rw-r--r-- | src/lib/elementary/elm_code_widget_legacy_eo.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/lib/elementary/elm_code_widget_legacy_eo.c b/src/lib/elementary/elm_code_widget_legacy_eo.c new file mode 100644 index 0000000..e16bdd1 --- /dev/null +++ b/src/lib/elementary/elm_code_widget_legacy_eo.c | |||
@@ -0,0 +1,27 @@ | |||
1 | |||
2 | static Eina_Bool | ||
3 | _elm_code_widget_legacy_class_initializer(Efl_Class *klass) | ||
4 | { | ||
5 | const Efl_Object_Ops *opsp = NULL; | ||
6 | |||
7 | const Efl_Object_Property_Reflection_Ops *ropsp = NULL; | ||
8 | |||
9 | #ifdef ELM_CODE_WIDGET_LEGACY_EXTRA_OPS | ||
10 | EFL_OPS_DEFINE(ops, ELM_CODE_WIDGET_LEGACY_EXTRA_OPS); | ||
11 | opsp = &ops; | ||
12 | #endif | ||
13 | |||
14 | return efl_class_functions_set(klass, opsp, ropsp); | ||
15 | } | ||
16 | |||
17 | static const Efl_Class_Description _elm_code_widget_legacy_class_desc = { | ||
18 | EO_VERSION, | ||
19 | "Elm.Code_Widget_Legacy", | ||
20 | EFL_CLASS_TYPE_REGULAR, | ||
21 | 0, | ||
22 | _elm_code_widget_legacy_class_initializer, | ||
23 | NULL, | ||
24 | NULL | ||
25 | }; | ||
26 | |||
27 | EFL_DEFINE_CLASS(elm_code_widget_legacy_class_get, &_elm_code_widget_legacy_class_desc, ELM_CODE_WIDGET_CLASS, EFL_UI_LEGACY_INTERFACE, NULL); | ||