[function/bind] function object type introspection

Hi, I've got couple questions. Might be someone can point me in right direction. Let's say I've got this class ConcreteFunctor which should handle all kinds of functions. I want to store the function as boost::function object, thus the class has template parameter - FunctionType: template<typename FuncType> ConcreteFunctor : public AbstractFunctor { ConcreteFunctor( FuncType f ) ... {} virtual invoke( std::vector

Hi!
please see my partial suggestion below...
On Thu, Oct 1, 2009 at 11:02 AM, Gennadiy Rozental
Is may be Boost.FunctionTypes what you are looking for? http://www.boost.org/doc/libs/1_40_0/libs/function_types/doc/html/boost_func... Regards, Ovanes

function_type expects mpl sequense.
As far as I understand it, you need to apply result_type to your F and
parameter_types to F. From there you can model your function. Or am I wrong? template<class F> some_return_type make_function(F f) { typedef typename result_type<F>::type result_type; typedef typename parameter_types<F>::type mpl_seq_params; //insert the result type to the mpl_seq_params => fct_sig; ... } But I am not sure if it works, this is my assumption only. Regards, Ovanes

Maybe what you need is a combinatioin of FunctionTypes and TypeTraits
//example with type_traits/function_traits
#include
participants (3)
-
AlfC
-
Gennadiy Rozental
-
Ovanes Markarian