From 8ac929f7486eb685ffe9cc4c3f52611fde31d0a0 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sat, 9 Apr 2016 01:07:03 -0400 Subject: [PATCH] WIP --- docs/source/tutorial/cxx-in-lua.rst | 2 +- docs/source/tutorial/existing.rst | 2 +- docs/source/tutorial/functions.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/tutorial/cxx-in-lua.rst b/docs/source/tutorial/cxx-in-lua.rst index 7a950c6e..bcad2b9f 100644 --- a/docs/source/tutorial/cxx-in-lua.rst +++ b/docs/source/tutorial/cxx-in-lua.rst @@ -1,4 +1,4 @@ C++ in Lua ========== -Using user defined types ("usertype"s, or just "udt"s) is simple with Sol. If you don't call any member variables or functions, then you don't even have to 'register' the usertype at all: just pass it through. \ No newline at end of file +Using user defined types ("usertype"s, or just "udt"s) is simple with Sol. If you don't call any member variables or functions, then you don't even have to 'register' the usertype at all: just pass it through. [ WIP - Check back soon! ] \ No newline at end of file diff --git a/docs/source/tutorial/existing.rst b/docs/source/tutorial/existing.rst index 35d15a56..c9e48f05 100644 --- a/docs/source/tutorial/existing.rst +++ b/docs/source/tutorial/existing.rst @@ -20,4 +20,4 @@ If you're already using lua and you just want to use ``sol`` in some places, you Sol has no initialization components that need to deliberately remain alive for the duration of the program. It's entirely self-containing and uses lua's garbage collectors and various implementation techniques to require no state C++-side. After you do that, all of the power of `Sol` is available to you, and then some! -Remember that Sol can be as lightweight as you want it: almost all of Sol's types take the ``lua_State*`` argument and then a second ``int index`` stack index argument, meaning you can use :doc:`tables<../api/table>`, :doc:`lua functions<../api/function>`, :doc:`tables<../api/table>`, and other reference-derived objects that expose the proper constructor for your use. \ No newline at end of file +Remember that Sol can be as lightweight as you want it: almost all of Sol's types take the ``lua_State*`` argument and then a second ``int index`` stack index argument, meaning you can use :doc:`tables<../api/table>`, :doc:`lua functions<../api/function>`, :doc:`coroutines<../api/coroutine>`, and other reference-derived objects that expose the proper constructor for your use. You can also set :doc:`usertypes<../api/usertype>` and other things you need without changing your entire architecture! \ No newline at end of file diff --git a/docs/source/tutorial/functions.rst b/docs/source/tutorial/functions.rst index 196232ae..81d3395a 100644 --- a/docs/source/tutorial/functions.rst +++ b/docs/source/tutorial/functions.rst @@ -1,4 +1,4 @@ functions and You ================= -Sol can register all kinds of functions. \ No newline at end of file +Sol can register all kinds of functions. [ WIP - Check back soon! ] \ No newline at end of file