summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_code_widget_legacy_eo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/elm_code_widget_legacy_eo.c')
-rw-r--r--src/lib/elementary/elm_code_widget_legacy_eo.c27
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 0000000000..e16bdd1cc3
--- /dev/null
+++ b/src/lib/elementary/elm_code_widget_legacy_eo.c
@@ -0,0 +1,27 @@
+
+static Eina_Bool
+_elm_code_widget_legacy_class_initializer(Efl_Class *klass)
+{
+ const Efl_Object_Ops *opsp = NULL;
+
+ const Efl_Object_Property_Reflection_Ops *ropsp = NULL;
+
+#ifdef ELM_CODE_WIDGET_LEGACY_EXTRA_OPS
+ EFL_OPS_DEFINE(ops, ELM_CODE_WIDGET_LEGACY_EXTRA_OPS);
+ opsp = &ops;
+#endif
+
+ return efl_class_functions_set(klass, opsp, ropsp);
+}
+
+static const Efl_Class_Description _elm_code_widget_legacy_class_desc = {
+ EO_VERSION,
+ "Elm.Code_Widget_Legacy",
+ EFL_CLASS_TYPE_REGULAR,
+ 0,
+ _elm_code_widget_legacy_class_initializer,
+ NULL,
+ NULL
+};
+
+EFL_DEFINE_CLASS(elm_code_widget_legacy_class_get, &_elm_code_widget_legacy_class_desc, ELM_CODE_WIDGET_CLASS, EFL_UI_LEGACY_INTERFACE, NULL);