Eo: added a version field to the class description.
[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      EO_VERSION,
10      "Inherit",
11      EO_CLASS_TYPE_REGULAR,
12      EO_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
13      NULL,
14      0,
15      NULL,
16      NULL
17 };
18
19 EO_DEFINE_CLASS(inherit_class_get, &class_desc, SIMPLE_CLASS, NULL);