This is related to this previous question: Using boost::bind with boost::function: retrieve binded variable type.
I can bind a function like this:
in .h:
class MyClass
{
void foo(int a);
void bar();
void execute(char* param);
int _myint;
}
in .cpp
MyClass::bar()
{
vector<boost::function<void(void)> myVector;
myVector.push_back(boost::bind(&MyClass::foo, this, MyClass::_myint);
}
MyClass::execute(char* param)
{
boost::function<void(void)> f = myVector[0];
_myint = atoi(param);
f();
}
But how can I bind a return value ? i.e.:
in .h:
class MyClass
{
double foo(int a);
void bar();
void execute(char* param);
int _myint;
double _mydouble;
}
in .cpp
MyClass::bar()
{
vector<boost::function<void(void)> myVector;
//PROBLEM IS HERE: HOW DO I BIND "_mydouble"
myVector.push_back(boost::bind<double>(&MyClass::foo, this, MyClass::_myint);
}
MyClass::execute(char* param)
{
double returnval;
boost::function<void(void)> f = myVector[0];
_myint = atoi(param);
//THIS DOES NOT WORK: cannot convert 'void' to 'double'
// returnval = f();
//MAYBE THIS WOULD IF I COULD BIND...:
// returnval = _mydouble;
}
function<void(void)>-- where do you expect adoubleto come into this at all? If you want a nullaryfunction<>that returns adouble, tryfunction<double()>... – ildjarn Oct 31 '11 at 21:53barfunction, this is how the input argument is bound, the function type is erased and becomesfunction<void(void>>but_myintis still linked.. I want the same for the return value. The point is to be able to store all the boost::functions in the same vector ;) – Smash Oct 31 '11 at 21:56voidas the return value (function<void(void)>); either you wantvoidor you wantdouble, you can't have both. – ildjarn Oct 31 '11 at 21:58returnval = f();shouldn't work, but there should be a way to bind the return value just as there is a way to bind the input value... – Smash Oct 31 '11 at 21:59