Eo: Removed "type" property from event/op descriptions.
[profile/ivi/eobj.git] / examples / constructors / simple3.c
1 #include "Eo.h"
2 #include "mixin.h"
3 #include "simple3.h"
4
5 #include "config.h"
6
7 #define MY_CLASS SIMPLE3_CLASS
8
9 static void
10 _constructor(Eo *obj, void *class_data EINA_UNUSED)
11 {
12    (void) obj;
13 }
14
15 static const Eo_Class_Description class_desc = {
16      "Simple3",
17      EO_CLASS_TYPE_REGULAR,
18      EO_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
19      NULL,
20      0,
21      _constructor,
22      NULL,
23      NULL,
24      NULL
25 };
26
27 EO_DEFINE_CLASS(simple3_class_get, &class_desc, EO_BASE_CLASS, NULL);
28