Advertisement

Pass std::map iterators to Lua with Luabind

Started by July 25, 2011 08:40 AM
-1 comments, last by TankBo 13 years, 7 months ago
Hi guys,

does anyone know if it's possible to pass std::map iterators to Lua using Luabind?

I know that Luabind supports the return_stl_iterator policy, and it just works fine for non-associative containers like std::vector and std::list. However, having an iterator with "first" and "second" members, Luabind isn't able to export them, thus getting "class not registered" errors (because Luabind dereferences the iterator when using the policy, which leads to the wanted type in non-associative containers, but to a std::pair for associative containers).

Greetings.

This topic is closed to new replies.

Advertisement