efl/src/tests/eolian_cxx/d.c

26 lines
393 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_efl_object_constructor(Eo *obj EINA_UNUSED, D_Data *pd EINA_UNUSED)
{
return efl_constructor(efl_super(obj, MY_CLASS));
}
#include "d.eo.c"