efl/src/tests/eo/constructors/constructors_mixin.c

59 lines
1.2 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 "constructors_mixin.h"
#include "constructors_simple.h"
#define MY_CLASS MIXIN_CLASS
static void
_add_and_print_set(Eo *obj, void *class_data EINA_UNUSED, int x)
{
int a = 0, b = 0;
a = simple_a_get(obj);
b = simple_b_get(obj);
printf("%s %d\n", __func__, a + b + x);
}
extern int my_init_count;
static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
my_init_count++;
return efl_constructor(eo_super(obj, MY_CLASS));
}
static void
_destructor(Eo *obj, void *class_data EINA_UNUSED)
{
efl_destructor(eo_super(obj, MY_CLASS));
my_init_count--;
}
EAPI EO_VOID_FUNC_BODYV(mixin_add_and_print, EO_FUNC_CALL(x), int x);
static Efl_Op_Description op_descs[] = {
EO_OP_FUNC(mixin_add_and_print, _add_and_print_set),
EO_OP_FUNC_OVERRIDE(efl_constructor, _constructor),
EO_OP_FUNC_OVERRIDE(efl_destructor, _destructor),
};
static const Efl_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,
NULL,
NULL
};
2014-04-02 04:01:16 -07:00
EO_DEFINE_CLASS(mixin_class_get, &class_desc, NULL, EO_CLASS, NULL);