From eb58e70ce966a933ea2e2ae5914da8d602d4e1f0 Mon Sep 17 00:00:00 2001 From: Daniel Zaoui Date: Sun, 25 May 2014 11:39:33 +0300 Subject: [PATCH] Eolian: remove unused structures. These structs were belonging to a feature that has been removed cause not considered as needed. --- src/lib/eolian/Eolian.h | 12 ------------ src/lib/eolian/eolian_database.c | 16 ---------------- 2 files changed, 28 deletions(-) diff --git a/src/lib/eolian/Eolian.h b/src/lib/eolian/Eolian.h index ed7c44c43f..b245608cb1 100644 --- a/src/lib/eolian/Eolian.h +++ b/src/lib/eolian/Eolian.h @@ -68,18 +68,6 @@ typedef struct _Parameter_Desc* Eolian_Function_Parameter; */ typedef struct _Implement_Desc* Eolian_Implement; -/* Class implement legacy information - * - * @ingroup Eolian - */ -typedef struct _Implement_Legacy_Desc* Eolian_Implement_Legacy; - -/* Class implement legacy parameter information - * - * @ingroup Eolian - */ -typedef struct _Implement_Legacy_Param* Eolian_Implement_Legacy_Parameter; - /* Event information * * @ingroup Eolian diff --git a/src/lib/eolian/eolian_database.c b/src/lib/eolian/eolian_database.c index 4f817e3e23..2be1d418ae 100644 --- a/src/lib/eolian/eolian_database.c +++ b/src/lib/eolian/eolian_database.c @@ -79,27 +79,11 @@ typedef struct Eina_Bool is_own :1; /* True if the ownership of this argument passes to the caller/callee */ } _Parameter_Type; -typedef struct -{ - Eina_Stringshare *eo_param; - Eina_Stringshare *leg_param; - Eina_Stringshare *comment; -} _Implement_Legacy_Param; - -typedef struct -{ - Eina_Stringshare *legacy_function_name; - Eina_List *params; /* List of Eolian_Implement_Legacy_Parameter */ - Eina_Stringshare *ret_type; - Eina_Stringshare *ret_value; -} _Implement_Legacy_Desc; - typedef struct { Eina_Stringshare *class_name; Eina_Stringshare *func_name; Eolian_Function_Type type; - Eolian_Implement_Legacy leg_desc; } _Implement_Desc; typedef struct