Tagged Questions

0
votes
3answers
159 views

Exposing an STL Queue to Lua via Luabind

I'm attempting to replace an existing implementation of a queue class written in Lua with the STL Queue class. I'm not sure why this is failing, or how to approach fixing it. Below is some sample code ...
0
votes
1answer
588 views

How do I use Luabind and C++ to create an asset managing class?

I've made countless attempts to get this working, but everything I do gives me run-time errors. I've been trying to make asset managers to manage content for my game engine, and I'm using lua and ...
0
votes
1answer
906 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 ...