vote up 2 vote down star
2

want to pass boost::bind to a method expecting a plain function pointer (same signature).

typedef void TriggerProc_type(Variable*,void*);
void InitVariable(TriggerProc_type *proc);
boost::function<void (Variable*, void*)> triggerProc ...
InitVariable(triggerProc);

error C2664: 'InitVariable' : cannot convert parameter 1 from 
'boost::function<Signature>' to 'void (__cdecl *)(type *,void *)'

I can avoid storing a boost::function and just pass the bound functor directly, but then I get similar error:

error C2664: 'blah(void (__cdecl *)(type *,void *))' : cannot convert parameter
1 from 'boost::_bi::bind_t<R,F,L>' to 'void (__cdecl *)(type *,void *)'
flag

4 Answers

vote up 7 vote down check

I think you want to use the target() member function of boost::function (isn't that a mouthful...)

#include <boost/function.hpp>
#include <iostream>

int f(int x)
{
  return x + x;
}

typedef int (*pointer_to_func)(int);

int
main()
{
  boost::function<int(int x)> g(f);

  if(*g.target<pointer_to_func>() == f) {
    std::cout << "g contains f" << std::endl;
  } else {
    std::cout << "g does not contain f" << std::endl;
  }

  return 0;
}
link|flag
vote up 0 vote down

can you get it working with bind?

#include <boost/function.hpp>
#include <boost/bind.hpp>

void f(int x)
{
    (void) x;
    _asm int 3;
}

typedef void (*cb_t)(int);

int main()
{
    boost::function<void (int x)> g = boost::bind(f, 3);
    cb_t cb = *g.target<cb_t>(); //target returns null
    cb(1);

    return 0;
}

update: Okay, well the intent is to bind a method into a function-callback. so now what?

link|flag
the only way to get data into a callback without binding it to it, is via a free object – Iraimbilanja Feb 5 at 4:29
vote up 1 vote down

can you get it working with bind?

cb_t cb = *g.target<cb_t>(); //target returns null

This is by design. Basically, since bind returns a completely different type, there's no way that this will work. Basically, a binder proxy object cannot be converted to a C function pointer (since it isn't one: it's a function object). The type returned by boost::bind is complicated. The current C++ standard allows no good way of doing what you want. C++0x will be fitted with a decltype expression which could be used here to achieve something like this:

typedef decltype(bind(f, 3)) bind_t;
bind_t target = *g.target<bind_t>();

Notice that this might or might not work. I have no way of testing it.

link|flag
Okay, well the intent is to bind a method into a function-callback. so now what? – Dustin Getz Feb 4 at 17:04
Basically, you can't. Not using boost::bind and boost::function. The only resort might be to hard-code the required function and retrieve a pointer to it. – Konrad Rudolph Feb 4 at 17:31
man, this would have taken 10s in python :( – Dustin Getz Feb 4 at 17:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.