-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Would it be possible to add the ability to bind a member function? There is
already the ability for a c function like:
m->set( "c_function", SLB::FuncCall::create(c_function));
But could we have something like:
struct Foo
{
int Bar(int a, int b) { return a*b; }
};
Foo f;
m->set( "Bar", SLB::FuncCall::create(Foo::Bar), &f);
Original issue reported on code.google.com by aa...@2ezstudios.com on 16 Feb 2012 at 4:51
Reactions are currently unavailable