efl/src/tests/eolian_cxx/a.c

23 lines
338 B
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#include "a.eo.h"
struct _A_Data
{
int callbacks;
};
typedef struct _A_Data A_Data;
#define MY_CLASS A_CLASS
static Eo *_a_efl_object_constructor(Eo *obj EINA_UNUSED, A_Data *pd EINA_UNUSED)
{
return efl_constructor(eo_super(obj, MY_CLASS));
}
#include "a.eo.c"