Tagged Questions

1
vote
0answers
177 views

Event dispatcher using luabind::call_function

Luabind has the following function: luabind::call_function<Type>( function, args... ) In my C++ program, I've got an event system, that means for each event you can register callbacks. When ...
0
votes
1answer
905 views

Luabind Function using std::string& Reference with pure_out_value policy not possible?

I'am trying to return a string from a function but it doesn't compile. When I replace the std::string& type with int& it compiles, however I want to return additionally to the boolean a ...