Eo: Turn evas example back on.
[profile/ivi/eobj.git] / src / tests / constructors / simple4.c
1 #include "Eo.h"
2 #include "mixin.h"
3 #include "simple.h"
4 #include "simple4.h"
5
6 #define MY_CLASS SIMPLE4_CLASS
7
8 static const Eo_Class_Description class_desc = {
9      "Simple4",
10      EO_CLASS_TYPE_REGULAR,
11      EO_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
12      NULL,
13      0,
14      NULL,
15      NULL
16 };
17
18 EO_DEFINE_CLASS(simple4_class_get, &class_desc, SIMPLE_CLASS, MIXIN_CLASS, NULL);
19