Home | History | Annotate | only in /src/external/bsd/lutok/dist
Up to higher level directory
NameDateSize
Atffile16-Feb-2013207
AUTHORS16-Feb-201333
c_gate.cpp16-Feb-20132.7K
c_gate.hpp16-Feb-20132.6K
c_gate_test.cpp18-Oct-20132.5K
COPYING16-Feb-20131.4K
debug.cpp16-Feb-20135.1K
debug.hpp18-Oct-20133.1K
debug_test.cpp16-Feb-20132.5K
examples/25-Feb-2026
examples_test.sh16-Feb-20133.8K
exceptions.cpp16-Feb-20133.7K
exceptions.hpp16-Feb-20132.6K
exceptions_test.cpp16-Feb-20133.1K
Kyuafile16-Feb-2013318
lutok.pc.in16-Feb-2013197
NEWS18-Oct-20131.1K
operations.cpp16-Feb-20134.8K
operations.hpp16-Feb-20132.1K
operations_test.cpp16-Feb-20138.5K
README16-Feb-20131.2K
stack_cleaner.cpp16-Feb-20133.3K
stack_cleaner.hpp02-Jul-20203.2K
stack_cleaner_test.cpp16-Feb-20133.4K
state.cpp21-Jun-202024K
state.hpp18-Oct-20134.9K
state.ipp16-Feb-20132.3K
state_test.cpp18-Oct-201340K
test_utils.hpp16-Feb-20134.9K

README

      1 Lutok is a lightweight C++ API library for Lua.
      2 
      3 Lutok provides thin C++ wrappers around the Lua C API to ease the
      4 interaction between C++ and Lua.  These wrappers make intensive use of
      5 RAII to prevent resource leakage, expose C++-friendly data types, report
      6 errors by means of exceptions and ensure that the Lua stack is always
      7 left untouched in the face of errors.  The library also provides a small
      8 subset of miscellaneous utility functions built on top of the wrappers.
      9 
     10 Lutok focuses on providing a clean and safe C++ interface; the drawback
     11 is that it is not suitable for performance-critical environments.  In
     12 order to implement error-safe C++ wrappers on top of a Lua C binary
     13 library, Lutok adds several layers or abstraction and error checking
     14 that go against the original spirit of the Lua C API and thus degrade
     15 performance.
     16 
     17 For further information on the contents of this distribution file,
     18 please 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 
     25 For general project information, please visit:
     26 
     27     http://code.google.com/p/lutok/
     28