Tagged Questions
1
vote
2answers
90 views
Bind function pointer to boost::function object
How can I initialize a boost::function object with a raw function pointer?
Metacode
extern "C"
{
class Library
{
...
};
Library* createLibrary();
}
...
void* ...
1
vote
1answer
131 views
boost::function and plain function pointers: ambigous overload
Given the following member function overload to take various functors
class Foo {
public:
void bar(boost::function<void(int)> func);
void bar(boost::function<void(float)> ...
1
vote
2answers
868 views
Help with boost bind/functions
I have this function signature I have to match
typedef int (*lua_CFunction) (lua_State *L);//target sig
Here's what I have so far:
//somewhere else...
...
...