efl/src/tests/eolian_cxx/a.c

26 lines
397 B
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eo.h>
#define EOLIANCXXTEST_API
#define EOLIANCXXTEST_API_WEAK
#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(efl_super(obj, MY_CLASS));
}
#include "a.eo.c"