#ifndef EFL_EINA_FUNCTION_HH #define EFL_EINA_FUNCTION_HH namespace efl { namespace eina { namespace _mpl { template struct function_params; template struct function_params { typedef std::tuple type; }; template struct function_return; template struct function_return { typedef R type; }; } } } #endif