https://github.com/cuberite/toluapp
tolua++ files
https://github.com/cuberite/toluapp
library
Last synced: about 1 year ago
JSON representation
tolua++ files
- Host: GitHub
- URL: https://github.com/cuberite/toluapp
- Owner: cuberite
- License: other
- Created: 2015-11-04T21:27:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-06-23T12:56:50.000Z (about 5 years ago)
- Last Synced: 2025-03-26T14:56:03.555Z (over 1 year ago)
- Topics: library
- Language: Lua
- Size: 194 KB
- Stars: 3
- Watchers: 13
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is tolua++-1.0, with changes made by the Cuberite community (*)
* What is tolua++?
tolua++ is an extension of toLua, a tool to integrate C/C++ code with
Lua. tolua++ includes new features oriented to c++, such as class
templates.
tolua is a tool that greatly simplifies the integration of C/C++ code
with Lua. Based on a "cleaned" header file, tolua automatically generates
the binding code to access C/C++ features from Lua. Using Lua-5.0 API and
metamethod facilities, the current version automatically maps C/C++
constants, external variables, functions, namespace, classes, and methods
to Lua. It also provides facilities to create Lua modules.
* Availability
tolua++ is freely available for both academic and commercial purposes.
See COPYRIGHT for details.
tolua++ can be downloaded from the sites below:
http://www.codenix.com/~tolua/
* Installation
See INSTALL.
* Contacting the author
tolua has been designed and implemented by Waldemar Celes.
tolua++ is maintained by Ariel Manzur.
Send your comments, bug reports and anything else to
tolua@codenix.com
(*) Changes were made to make it easier to incorporate this tool into a cross-
-compiling flow. The binary stub was removed in favor of a pure-Lua
implementation by the caller.