Eo: Turn evas example back on.
[profile/ivi/eobj.git] / src / tests / function_overrides / inherit.c
1 #include "Eo.h"
2 #include "simple.h"
3
4 #include "inherit.h"
5
6 #define MY_CLASS INHERIT_CLASS
7
8 static const Eo_Class_Description class_desc = {
9      "Inherit",
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(inherit_class_get, &class_desc, SIMPLE_CLASS, NULL);