vote up 1 vote down star
1

Is there a non-hacky (i.e. no assembly, ...) way to use boost functions to create callbacks with non-static class methods?

Currently for static methods:

list<function<void (LuaState&)> > _callbacks;

I was thinking something along the lines of

list<tuple<function<void (void *, LuaState&)>, void*> _callbacks;

but boost functions doesn't like those void*s.

flag

1 Answer

vote up 8 vote down check
function<void (LuaState&)> on_whatever
    = bind(&my_class::my_method, &my_object_of_type_my_class, _1);
link|flag
Hmm I didn't think of that. Let me try it out. – jameszhao00 Aug 14 at 19:37
Shouldn't it be the following? bind(&my_class::my_method, &my_object_of_type_my_class, _1); – jameszhao00 Aug 14 at 19:38
Yes, you're right, it should. Fixed. – avakar Aug 14 at 20:39
that depends on the arguments you need to pass to the method and where do you want to take then from. Read boost::bind documentation. – fnieto Aug 14 at 22:01
Obviously, he needs to pass a reference to an object of type LuaState. ;-) – avakar Aug 15 at 17:14

Your Answer

Get an OpenID
or

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