Changeset View
Changeset View
Standalone View
Standalone View
src/tests/eolian/data/class_simple_ref.c
Show All 39 Lines | 38 | EFL_OPS_DEFINE(ops, | |||
---|---|---|---|---|---|
40 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_a_get, _class_simple_a_get), | 40 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_a_get, _class_simple_a_get), | ||
41 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_b_set, _class_simple_b_set), | 41 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_b_set, _class_simple_b_set), | ||
42 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_foo, __eolian_class_simple_foo), | 42 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_foo, __eolian_class_simple_foo), | ||
43 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_bar, _class_simple_bar), | 43 | EFL_OBJECT_OP_FUNC(efl_canvas_object_simple_bar, _class_simple_bar), | ||
44 | CLASS_SIMPLE_EXTRA_OPS | 44 | CLASS_SIMPLE_EXTRA_OPS | ||
45 | ); | 45 | ); | ||
46 | opsp = &ops; | 46 | opsp = &ops; | ||
47 | 47 | | |||
48 | return efl_class_functions_set(klass, opsp, NULL, NULL); | 48 | return efl_class_functions_set(klass, opsp, NULL); | ||
49 | } | 49 | } | ||
50 | 50 | | |||
51 | static const Efl_Class_Description _class_simple_class_desc = { | 51 | static const Efl_Class_Description _class_simple_class_desc = { | ||
52 | EO_VERSION, | 52 | EO_VERSION, | ||
53 | "Class_Simple", | 53 | "Class_Simple", | ||
54 | EFL_CLASS_TYPE_REGULAR, | 54 | EFL_CLASS_TYPE_REGULAR, | ||
55 | sizeof(Evas_Simple_Data), | 55 | sizeof(Evas_Simple_Data), | ||
56 | _class_simple_class_initializer, | 56 | _class_simple_class_initializer, | ||
Show All 17 Lines |