Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-11-01 | Add checkstring() to lua::state | Pavel Labath | 1 | -0/+2 | |
2011-11-01 | Add checkudata and checkargno functions to lua::state | Pavel Labath | 1 | -0/+12 | |
These can be used by functions to check the saneness of arguments. They throw an exception on error. In the future, I might add more informative error messages. | |||||
2011-11-01 | luamm: add lua_isuserdata C++ binding | Pavel Labath | 1 | -0/+1 | |
2011-11-01 | A lightweight version of lua::state::pushclosure which handles the simple cases | Pavel Labath | 1 | -1/+2 | |
2011-11-01 | Luamm: add lua_istable C++ wrapper | Pavel Labath | 1 | -0/+1 | |
2011-11-01 | Add a version of lua::state::loadstring which accepts std::string | Pavel Labath | 1 | -0/+1 | |
2011-11-01 | Lua exceptions can now outlive thier lua context | Pavel Labath | 1 | -1/+13 | |
2011-11-01 | Luamm: add lua_createtable binding | Pavel Labath | 1 | -0/+1 | |
2011-11-01 | luamm: add a version of loadstring which also takes the string length as a ↵ | Pavel Labath | 1 | -1/+3 | |
parameter | |||||
2011-11-01 | Add lua_rawgeti wrapper to luamm | Pavel Labath | 1 | -0/+1 | |
2011-11-01 | Remove the possibility to transport exceptions through lua code | Pavel Labath | 1 | -1/+1 | |
It's impossible to do this without C++0x features (we need std::exception_ptr). | |||||
2011-11-01 | c++ lua binding: get rid of variadic templates | Pavel Labath | 1 | -5/+44 | |
See how variadic templates are good. They enabled me to write those four functions as one. | |||||
2011-11-01 | c++ lua binding: get rid of shared_ptr | Pavel Labath | 1 | -54/+55 | |
It was pretty underused anyway. I was just lazy to write a proper destructor. | |||||
2011-11-01 | c++ lua binding: get rid of deleted functions and rvalue references | Pavel Labath | 1 | -44/+14 | |
2011-11-01 | c++ lua binding: replace std::function with FbTk::Slot | Pavel Labath | 1 | -17/+32 | |
std::function is superior, but not supported on old compilers | |||||
2011-11-01 | C++ binding for lua | Pavel Labath | 1 | -0/+341 | |
copied from conky (http://conky.sf.net) and relicensed. Since I am the person who wrote it in the first place there should not be a problem with licence conversion. |