efl/src/tests/eolian_cxx/d.c

28 lines
404 B
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#include "a.eo.h"
#include "b.eo.h"
#include "c.eo.h"
#include "d.eo.h"
struct _D_Data
{
int callbacks;
};
typedef struct _D_Data D_Data;
#define MY_CLASS D_CLASS
static Eo *_d_eo_base_constructor(Eo *obj EINA_UNUSED, D_Data *pd EINA_UNUSED)
{
return eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor());
}
#include "d.eo.c"