efl/src/tests/eolian_cxx/b.c

26 lines
352 B
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#include "a.eo.h"
#include "b.eo.h"
struct _B_Data
{
int callbacks;
};
typedef struct _B_Data B_Data;
#define MY_CLASS B_CLASS
static void _b_eo_base_constructor(Eo *obj EINA_UNUSED, B_Data *pd EINA_UNUSED)
{
eo_do_super(obj, MY_CLASS, eo_constructor());
}
#include "b.eo.c"