From ec413015da35f568b8d05a63ce16c783b6c22745 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 17 Apr 2012 14:01:03 +0000 Subject: [PATCH] Eobj: Doxygen - moved EOBJ_EV_* to be under EOBJ_BASE_CLASS. SVN revision: 70271 --- legacy/eobj/lib/Eobj.h | 100 ++++++++++++++++++++--------------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/legacy/eobj/lib/Eobj.h b/legacy/eobj/lib/Eobj.h index 635829d735..38ee107325 100644 --- a/legacy/eobj/lib/Eobj.h +++ b/legacy/eobj/lib/Eobj.h @@ -407,30 +407,6 @@ EAPI int eobj_ref_get(const Eobj *obj); */ EAPI void eobj_del(Eobj *obj); -/** - * @var _EOBJ_EV_FREE - * see #EOBJ_EV_FREE - */ -EAPI extern const Eobj_Event_Description _EOBJ_EV_FREE; - -/** - * @def EOBJ_EV_FREE - * Object is being freed. - */ -#define EOBJ_EV_FREE (&(_EOBJ_EV_FREE)) - -/** - * @var _EOBJ_EV_DEL - * see #EOBJ_EV_DEL - */ -EAPI extern const Eobj_Event_Description _EOBJ_EV_DEL; - -/** - * @def EOBJ_EV_DEL - * Object is being deleted. - */ -#define EOBJ_EV_DEL (&(_EOBJ_EV_DEL)) - /** * @addtogroup Eobj_Weak_Ref Weak reference for Eobj objects. * @{ @@ -652,32 +628,6 @@ EAPI void *eobj_event_callback_del_full(Eobj *obj, const Eobj_Event_Description */ EAPI Eina_Bool eobj_event_callback_call(Eobj *obj, const Eobj_Event_Description *desc, const void *event_info); -/** - * @var _EOBJ_EV_CALLBACK_ADD - * see EOBJ_EV_CALLBACK_ADD - */ -EAPI extern const Eobj_Event_Description _EOBJ_EV_CALLBACK_ADD; - -/** - * @def EOBJ_EV_CALLBACK_ADD - * The event description (of type #Eobj_Event_Description) for - * The "Callback listener added" event. - */ -#define EOBJ_EV_CALLBACK_ADD (&(_EOBJ_EV_CALLBACK_ADD)) - -/** - * @var _EOBJ_EV_CALLBACK_DEL - * see EOBJ_EV_CALLBACK_DEL - */ -EAPI extern const Eobj_Event_Description _EOBJ_EV_CALLBACK_DEL; - -/** - * @def EOBJ_EV_CALLBACK_DEL - * The event description (of type #Eobj_Event_Description) for - * The "Callback listener deleted" event. - */ -#define EOBJ_EV_CALLBACK_DEL (&(_EOBJ_EV_CALLBACK_DEL)) - /** * @} */ @@ -757,6 +707,56 @@ enum { */ #define EOBJ_BASE_DATA_DEL(key) EOBJ_BASE_ID(EOBJ_BASE_SUB_ID_DATA_DEL), EOBJ_TYPECHECK(const char *, key) +/** + * @var _EOBJ_EV_CALLBACK_ADD + * see EOBJ_EV_CALLBACK_ADD + */ +EAPI extern const Eobj_Event_Description _EOBJ_EV_CALLBACK_ADD; + +/** + * @def EOBJ_EV_CALLBACK_ADD + * The event description (of type #Eobj_Event_Description) for + * The "Callback listener added" event. + */ +#define EOBJ_EV_CALLBACK_ADD (&(_EOBJ_EV_CALLBACK_ADD)) + +/** + * @var _EOBJ_EV_CALLBACK_DEL + * see EOBJ_EV_CALLBACK_DEL + */ +EAPI extern const Eobj_Event_Description _EOBJ_EV_CALLBACK_DEL; + +/** + * @def EOBJ_EV_CALLBACK_DEL + * The event description (of type #Eobj_Event_Description) for + * The "Callback listener deleted" event. + */ +#define EOBJ_EV_CALLBACK_DEL (&(_EOBJ_EV_CALLBACK_DEL)) + +/** + * @var _EOBJ_EV_FREE + * see #EOBJ_EV_FREE + */ +EAPI extern const Eobj_Event_Description _EOBJ_EV_FREE; + +/** + * @def EOBJ_EV_FREE + * Object is being freed. + */ +#define EOBJ_EV_FREE (&(_EOBJ_EV_FREE)) + +/** + * @var _EOBJ_EV_DEL + * see #EOBJ_EV_DEL + */ +EAPI extern const Eobj_Event_Description _EOBJ_EV_DEL; + +/** + * @def EOBJ_EV_DEL + * Object is being deleted. + */ +#define EOBJ_EV_DEL (&(_EOBJ_EV_DEL)) + /** * @} */