summaryrefslogtreecommitdiff
path: root/src/tests/eolian_cxx/a.c
blob: 4fa7af78494a2eff8d181f9fc08c8a673d33203c (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_efl_object_constructor(Eo *obj EINA_UNUSED, A_Data *pd EINA_UNUSED)
{
   return efl_constructor(efl_super(obj, MY_CLASS));
}

#include "a.eo.c"