Name Date Size #Lines LOC

..15-Mar-2024-

admin/H08-May-2022-262141

examples/H08-May-2022-472162

include/lutok/H08-May-2022-1911

m4/H08-May-2022-513473

.gitignoreH A D08-May-2022181 2220

.travis.ymlH A D08-May-2022378 2619

AUTHORSH A D08-May-202233 21

COPYINGH A D08-May-20221.4 KiB2824

Doxyfile.inH A D08-May-20222.2 KiB5452

INSTALLH A D08-May-20225.7 KiB182128

KyuafileH A D08-May-2022318 129

Makefile.amH A D08-May-20227.5 KiB222161

NEWSH A D08-May-20221.9 KiB6942

READMEH A D08-May-20221.2 KiB2821

c_gate.cppH A D08-May-20222.7 KiB7719

c_gate.hppH A D08-May-20222.6 KiB7215

c_gate_test.cppH A D08-May-20222.5 KiB7534

configure.acH A D08-May-20222.3 KiB7155

debug.cppH A D08-May-20225.1 KiB19384

debug.hppH A D08-May-20223.1 KiB9135

debug_test.cppH A D08-May-20222.5 KiB6929

examples_test.shH A D08-May-20223.8 KiB11658

exceptions.cppH A D08-May-20223.7 KiB12749

exceptions.hppH A D08-May-20222.6 KiB8428

exceptions_test.cppH A D08-May-20223.1 KiB8945

lutok.pc.inH A D08-May-2022197 97

operations.cppH A D08-May-20225.4 KiB15468

operations.hppH A D08-May-20222.2 KiB5616

operations_test.cppH A D08-May-202210.9 KiB373263

stack_cleaner.cppH A D08-May-20223.3 KiB9230

stack_cleaner.hppH A D08-May-20223.2 KiB9417

stack_cleaner_test.cppH A D08-May-20223.4 KiB10969

state.cppH A D08-May-202224.2 KiB905403

state.hppH A D08-May-20224.8 KiB14674

state.ippH A D08-May-20222.3 KiB6857

state_test.cppH A D08-May-202233.4 KiB1,165883

test_utils.hppH A D08-May-20224.9 KiB14251

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