Tagged Questions

1
vote
1answer
1k views

Obtaining a pointer to Lua object instance in C++

I am using Luabind to expose a base class from C++ to Lua from which I can derive classes in Lua. This part works correctly and I am able to call C++ methods from my derived class in Lua. Now what I ...