1 
2 Efl_Object *_elm_sys_notify_dbus_efl_object_constructor(Eo *obj, void *pd);
3 
4 
5 void _elm_sys_notify_dbus_efl_object_destructor(Eo *obj, void *pd);
6 
7 
8 void _elm_sys_notify_dbus_elm_sys_notify_interface_send(const Eo *obj, void *pd, unsigned int replaces_id, const char *icon, const char *summary, const char *body, Elm_Sys_Notify_Urgency urgency, int timeout, Elm_Sys_Notify_Send_Cb cb, const void *cb_data);
9 
10 
11 void _elm_sys_notify_dbus_elm_sys_notify_interface_simple_send(const Eo *obj, void *pd, const char *icon, const char *summary, const char *body);
12 
13 
14 void _elm_sys_notify_dbus_elm_sys_notify_interface_close(const Eo *obj, void *pd, unsigned int id);
15 
16 
17 static Eina_Bool
_elm_sys_notify_dbus_class_initializer(Efl_Class * klass)18 _elm_sys_notify_dbus_class_initializer(Efl_Class *klass)
19 {
20    const Efl_Object_Ops *opsp = NULL;
21 
22    const Efl_Object_Property_Reflection_Ops *ropsp = NULL;
23 
24 #ifndef ELM_SYS_NOTIFY_DBUS_EXTRA_OPS
25 #define ELM_SYS_NOTIFY_DBUS_EXTRA_OPS
26 #endif
27 
28    EFL_OPS_DEFINE(ops,
29       EFL_OBJECT_OP_FUNC(efl_constructor, _elm_sys_notify_dbus_efl_object_constructor),
30       EFL_OBJECT_OP_FUNC(efl_destructor, _elm_sys_notify_dbus_efl_object_destructor),
31       EFL_OBJECT_OP_FUNC(elm_obj_sys_notify_interface_send, _elm_sys_notify_dbus_elm_sys_notify_interface_send),
32       EFL_OBJECT_OP_FUNC(elm_obj_sys_notify_interface_simple_send, _elm_sys_notify_dbus_elm_sys_notify_interface_simple_send),
33       EFL_OBJECT_OP_FUNC(elm_obj_sys_notify_interface_close, _elm_sys_notify_dbus_elm_sys_notify_interface_close),
34       ELM_SYS_NOTIFY_DBUS_EXTRA_OPS
35    );
36    opsp = &ops;
37 
38    return efl_class_functions_set(klass, opsp, ropsp);
39 }
40 
41 static const Efl_Class_Description _elm_sys_notify_dbus_class_desc = {
42    EO_VERSION,
43    "Elm.Sys_Notify.Dbus",
44    EFL_CLASS_TYPE_REGULAR,
45    0,
46    _elm_sys_notify_dbus_class_initializer,
47    NULL,
48    NULL
49 };
50 
51 EFL_DEFINE_CLASS(elm_sys_notify_dbus_class_get, &_elm_sys_notify_dbus_class_desc, EFL_OBJECT_CLASS, ELM_SYS_NOTIFY_INTERFACE_INTERFACE, NULL);
52