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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
#include "mixin_mixin.h"
#include "mixin_mixin3.h"
#include "mixin_simple.h"
#include "../eunit_tests.h"
#define MY_CLASS MIXIN3_CLASS
static int
_ab_sum_get(Eo *obj, void *class_data EINA_UNUSED)
{
/* This cast is just a hack for the test. */
Mixin3_Public_Data *pd = (Mixin3_Public_Data *) class_data;
int sum = 0;
printf("%s %s\n", efl_class_name_get(MY_CLASS), __func__);
sum = mixin_ab_sum_get(efl_super(obj, MY_CLASS));
++sum;
pd->count += 3;
{
int _a = 0, _b = 0;
_a = simple_a_get(obj);
_b = simple_b_get(obj);
fail_if(sum != _a + _b + 2);
}
return sum;
}
static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED, va_list *list EINA_UNUSED)
{
return efl_constructor(efl_super(obj, MY_CLASS));
}
static void
_destructor(Eo *obj, void *class_data EINA_UNUSED, va_list *list EINA_UNUSED)
{
efl_destructor(efl_super(obj, MY_CLASS));
}
static Eina_Bool
_class_initializer(Efl_Class *klass)
{
EFL_OPS_DEFINE(ops,
EFL_OBJECT_OP_FUNC(efl_constructor, _constructor),
EFL_OBJECT_OP_FUNC(efl_destructor, _destructor),
EFL_OBJECT_OP_FUNC(mixin_ab_sum_get, _ab_sum_get),
);
return efl_class_functions_set(klass, &ops, NULL);
}
static const Efl_Class_Description class_desc = {
EO_VERSION,
"Mixin3",
EFL_CLASS_TYPE_MIXIN,
sizeof(Mixin3_Public_Data),
_class_initializer,
NULL,
NULL
};
EFL_DEFINE_CLASS(mixin3_class_get, &class_desc, MIXIN_CLASS, NULL);
|