aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Luamm.hh
AgeCommit message (Collapse)AuthorFilesLines
2012-04-07A lightweight version of lua::state::pushclosure which handles the simple casesPavel Labath1-1/+2
2012-04-07Luamm: add lua_istable C++ wrapperPavel Labath1-0/+1
2012-04-07Add a version of lua::state::loadstring which accepts std::stringPavel Labath1-0/+1
2012-04-07Lua exceptions can now outlive thier lua contextPavel Labath1-1/+13
2012-04-07Luamm: add lua_createtable bindingPavel Labath1-0/+1
2012-04-07luamm: add a version of loadstring which also takes the string length as a ↵Pavel Labath1-1/+3
parameter
2012-04-07Add lua_rawgeti wrapper to luammPavel Labath1-0/+1
2012-04-07Remove the possibility to transport exceptions through lua codePavel Labath1-1/+1
It's impossible to do this without C++0x features (we need std::exception_ptr).
2012-04-07c++ lua binding: get rid of variadic templatesPavel Labath1-5/+44
See how variadic templates are good. They enabled me to write those four functions as one.
2012-04-07c++ lua binding: get rid of shared_ptrPavel Labath1-54/+55
It was pretty underused anyway. I was just lazy to write a proper destructor.
2012-04-07c++ lua binding: get rid of deleted functions and rvalue referencesPavel Labath1-44/+14
2012-04-07c++ lua binding: replace std::function with FbTk::SlotPavel Labath1-17/+32
std::function is superior, but not supported on old compilers
2012-04-07C++ binding for luaPavel Labath1-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.