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