├── .travis.yml ├── .travis └── runtests ├── CHANGES ├── CMakeLists.txt ├── FindLua52.cmake ├── FindLua53.cmake ├── FindLuaJIT51.cmake ├── LICENSE.md ├── README.md ├── include ├── LuaContext.hpp └── misc │ └── exception.hpp └── tests ├── advanced_readwrite.cpp ├── basic_readwrite.cpp ├── custom_types.cpp ├── execution.cpp ├── functions_read.cpp ├── functions_write.cpp ├── main.cpp ├── maps.cpp ├── metatables.cpp ├── movable.cpp └── threads.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/.travis/runtests -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindLua52.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/FindLua52.cmake -------------------------------------------------------------------------------- /FindLua53.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/FindLua53.cmake -------------------------------------------------------------------------------- /FindLuaJIT51.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/FindLuaJIT51.cmake -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/README.md -------------------------------------------------------------------------------- /include/LuaContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/include/LuaContext.hpp -------------------------------------------------------------------------------- /include/misc/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/include/misc/exception.hpp -------------------------------------------------------------------------------- /tests/advanced_readwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/advanced_readwrite.cpp -------------------------------------------------------------------------------- /tests/basic_readwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/basic_readwrite.cpp -------------------------------------------------------------------------------- /tests/custom_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/custom_types.cpp -------------------------------------------------------------------------------- /tests/execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/execution.cpp -------------------------------------------------------------------------------- /tests/functions_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/functions_read.cpp -------------------------------------------------------------------------------- /tests/functions_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/functions_write.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/maps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/maps.cpp -------------------------------------------------------------------------------- /tests/metatables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/metatables.cpp -------------------------------------------------------------------------------- /tests/movable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/movable.cpp -------------------------------------------------------------------------------- /tests/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahupowerdns/luawrapper/HEAD/tests/threads.cpp --------------------------------------------------------------------------------