summaryrefslogtreecommitdiff
path: root/src/tests/eolian/data/class_simple_ref.c
blob: cd1b28ac605c9466f8b8e516c4d96ce873f5e189 (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
36
37
38
39
40
41
42
43
44
45

Eina_Bool _class_simple_a_set(Eo *obj, Evas_Simple_Data *pd, int value);

EOAPI EO_FUNC_BODYV(evas_obj_simple_a_set, Eina_Bool, EINA_TRUE, EO_FUNC_CALL(value), int value);

int _class_simple_a_get(Eo *obj, Evas_Simple_Data *pd);

EOAPI EO_FUNC_BODY(evas_obj_simple_a_get, int, 100);

void _class_simple_b_set(Eo *obj, Evas_Simple_Data *pd);

EOAPI EO_VOID_FUNC_BODY(evas_obj_simple_b_set);

char * _class_simple_foo(Eo *obj, Evas_Simple_Data *pd, int a, char *b, double *c);

static char * __eolian_class_simple_foo(Eo *obj, Evas_Simple_Data *pd, int a, char *b, double *c)
{
   if (c) *c = 1337.600000;
   return _class_simple_foo(obj, pd, a, b, c);
}

EOAPI EO_FUNC_BODYV(evas_obj_simple_foo, char *, NULL, EO_FUNC_CALL(a, b, c), int a, char *b, double *c);

int _class_simple_bar(Eo *obj, Evas_Simple_Data *pd, int x);

EOAPI EO_FUNC_BODYV(evas_obj_simple_bar, int, 0, EO_FUNC_CALL(x), int x);

static Eo_Op_Description _class_simple_op_desc[] = {
     EO_OP_FUNC(evas_obj_simple_a_set, _class_simple_a_set),
     EO_OP_FUNC(evas_obj_simple_a_get, _class_simple_a_get),
     EO_OP_FUNC(evas_obj_simple_foo, __eolian_class_simple_foo),
};

static const Eo_Class_Description _class_simple_class_desc = {
     EO_VERSION,
     "Class_Simple",
     EO_CLASS_TYPE_REGULAR,
     EO_CLASS_DESCRIPTION_OPS(_class_simple_op_desc),
     NULL,
     sizeof(Evas_Simple_Data),
     NULL,
     NULL
};

EO_DEFINE_CLASS(class_simple_class_get, &_class_simple_class_desc, NULL, NULL);