summaryrefslogtreecommitdiff
path: root/src/tests/eo/constructors/constructors_simple4.c
blob: e71cc9b5e56bce6d01dce403f600b11768ce8709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include "Eo.h"
#include "constructors_mixin.h"
#include "constructors_simple.h"
#include "constructors_simple4.h"

#define MY_CLASS SIMPLE4_CLASS

static const Efl_Class_Description class_desc = {
     EO_VERSION,
     "Simple4",
     EFL_CLASS_TYPE_REGULAR,
     EFL_CLASS_DESCRIPTION_NOOPS(),
     NULL,
     0,
     NULL,
     NULL
};

EFL_DEFINE_CLASS(simple4_class_get, &class_desc, SIMPLE_CLASS, MIXIN_CLASS, NULL);