2 May
2009
2 May
'09
6:52 p.m.
Can boost.bind() be used to delay the call to a member function until you have gathered all the data types to populate the function parameter list?
Yes, if you mean something like this:
struct A
{
voif f(int a, double b, short c);
};
A *a = new A;
function