blob: 067639f7de0f7a71a908e3e13f567f56ed104593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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_eo_base_constructor(Eo *obj EINA_UNUSED, A_Data *pd EINA_UNUSED)
{
return eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor());
}
#include "a.eo.c"
|