efl/src/tests/eo/mixin/mixin_mixin.c

53 lines
1.1 KiB
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
2012-09-25 23:56:52 -07:00
#include "mixin_mixin.h"
#include "mixin_simple.h"
#define MY_CLASS MIXIN_CLASS
2013-11-08 02:48:55 -08:00
static int
_ab_sum_get(Eo *obj, void *class_data EINA_UNUSED)
{
int a = 0, b = 0;
2014-04-02 01:46:34 -07:00
eo_do(obj, a = simple_a_get(), b = simple_b_get());
printf("%s %s\n", eo_class_name_get(MY_CLASS), __func__);
2013-11-08 02:48:55 -08:00
return a + b;
}
static Eo *
2013-11-08 02:48:55 -08:00
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
return eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor());
}
static void
2013-11-08 02:48:55 -08:00
_destructor(Eo *obj, void *class_data EINA_UNUSED)
{
2014-04-02 01:46:34 -07:00
eo_do_super(obj, MY_CLASS, eo_destructor());
}
2014-04-02 01:46:34 -07:00
EAPI EO_FUNC_BODY(mixin_ab_sum_get, int, 0);
2014-04-02 01:46:34 -07:00
static Eo_Op_Description op_descs[] = {
EO_OP_FUNC_OVERRIDE(eo_constructor, _constructor),
EO_OP_FUNC_OVERRIDE(eo_destructor, _destructor),
EO_OP_FUNC(mixin_ab_sum_get, _ab_sum_get),
};
static const Eo_Class_Description class_desc = {
2014-04-02 01:46:34 -07:00
EO_VERSION,
"Mixin",
EO_CLASS_TYPE_MIXIN,
2014-04-02 01:46:34 -07:00
EO_CLASS_DESCRIPTION_OPS(op_descs),
NULL,
0,
2013-11-08 02:48:55 -08:00
NULL,
NULL
};
2014-04-02 04:01:16 -07:00
EO_DEFINE_CLASS(mixin_class_get, &class_desc, NULL, EO_CLASS, NULL)