NameDateSize

..11-Mar-202490

.gitignoreH A D22-Jun-2021181

.travis.ymlH A D22-Jun-2021378

admin/H22-Jun-20216

AUTHORSH A D22-Jun-202133

c_gate.cppH A D22-Jun-20212.7 KiB

c_gate.hppH A D22-Jun-20212.6 KiB

c_gate_test.cppH A D22-Jun-20212.5 KiB

configure.acH A D22-Jun-20212.3 KiB

COPYINGH A D22-Jun-20211.4 KiB

debug.cppH A D22-Jun-20215.1 KiB

debug.hppH A D22-Jun-20213.1 KiB

debug_test.cppH A D22-Jun-20212.5 KiB

Doxyfile.inH A D22-Jun-20212.2 KiB

examples/H22-Jun-20217

examples_test.shH A D22-Jun-20213.8 KiB

exceptions.cppH A D22-Jun-20213.7 KiB

exceptions.hppH A D22-Jun-20212.6 KiB

exceptions_test.cppH A D22-Jun-20213.1 KiB

include/H22-Jun-20213

INSTALLH A D22-Jun-20215.7 KiB

KyuafileH A D22-Jun-2021318

lutok.pc.inH A D22-Jun-2021197

m4/H22-Jun-20218

Makefile.amH A D22-Jun-20217.5 KiB

NEWSH A D22-Jun-20211.9 KiB

operations.cppH A D22-Jun-20215.4 KiB

operations.hppH A D22-Jun-20212.2 KiB

operations_test.cppH A D22-Jun-202110.9 KiB

READMEH A D22-Jun-20211.2 KiB

stack_cleaner.cppH A D22-Jun-20213.3 KiB

stack_cleaner.hppH A D22-Jun-20213.2 KiB

stack_cleaner_test.cppH A D22-Jun-20213.4 KiB

state.cppH A D22-Jun-202124.2 KiB

state.hppH A D22-Jun-20214.8 KiB

state.ippH A D22-Jun-20212.3 KiB

state_test.cppH A D22-Jun-202133.4 KiB

test_utils.hppH A D22-Jun-20214.9 KiB

README

1Lutok is a lightweight C++ API library for Lua.
2
3Lutok provides thin C++ wrappers around the Lua C API to ease the
4interaction between C++ and Lua.  These wrappers make intensive use of
5RAII to prevent resource leakage, expose C++-friendly data types, report
6errors by means of exceptions and ensure that the Lua stack is always
7left untouched in the face of errors.  The library also provides a small
8subset of miscellaneous utility functions built on top of the wrappers.
9
10Lutok focuses on providing a clean and safe C++ interface; the drawback
11is that it is not suitable for performance-critical environments.  In
12order to implement error-safe C++ wrappers on top of a Lua C binary
13library, Lutok adds several layers or abstraction and error checking
14that go against the original spirit of the Lua C API and thus degrade
15performance.
16
17For further information on the contents of this distribution file,
18please refer to the following other documents:
19
20* AUTHORS: List of authors and contributors to this project.
21* COPYING: License information.
22* INSTALL: Compilation and installation instructions.
23* NEWS: List of major changes between formal releases.
24
25For general project information, please visit:
26
27    https://github.com/jmmv/lutok/
28