summaryrefslogtreecommitdiff
path: root/src/tests/eo/children/children_simple.c
blob: 853381ffb78e08772a769ecfad81c47ea6e70fc7 (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 "children_simple.h"

#define MY_CLASS SIMPLE_CLASS

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

EFL_DEFINE_CLASS(simple_class_get, &class_desc, EFL_OBJECT_CLASS, NULL)