Eolian: remove unused structures.

These structs were belonging to a feature that has been removed cause
not considered as needed.
This commit is contained in:
Daniel Zaoui 2014-05-25 11:39:33 +03:00
parent 5b2ce095a3
commit eb58e70ce9
2 changed files with 0 additions and 28 deletions

View File

@ -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

View File

@ -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