aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-07-02 22:03:14 (GMT)
committerPavel Labath <pavelo@centrum.sk>2013-02-17 00:09:35 (GMT)
commit240736c6f9e78e58f90a4291d7fe876a15e460c6 (patch)
tree14e2b5916f7b82bd7705e674a5d0041ec9437930
parent6fb35815b8d0db49487dbc930f1223927853d09a (diff)
downloadfluxbox_pavel-240736c6f9e78e58f90a4291d7fe876a15e460c6.zip
fluxbox_pavel-240736c6f9e78e58f90a4291d7fe876a15e460c6.tar.bz2
Luamm: add lua_istable C++ wrapper
-rw-r--r--src/FbTk/Luamm.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/FbTk/Luamm.hh b/src/FbTk/Luamm.hh
index d853120..05cb569 100644
--- a/src/FbTk/Luamm.hh
+++ b/src/FbTk/Luamm.hh
@@ -203,6 +203,7 @@ namespace lua {
203 bool isnone(int index) throw() { return lua_isnone(cobj, index); } 203 bool isnone(int index) throw() { return lua_isnone(cobj, index); }
204 bool isnumber(int index) throw() { return lua_isnumber(cobj, index); } 204 bool isnumber(int index) throw() { return lua_isnumber(cobj, index); }
205 bool isstring(int index) throw() { return lua_isstring(cobj, index); } 205 bool isstring(int index) throw() { return lua_isstring(cobj, index); }
206 bool istable(int index) throw() { return lua_istable(cobj, index); }
206 void pop(int n = 1) throw() { lua_pop(cobj, n); } 207 void pop(int n = 1) throw() { lua_pop(cobj, n); }
207 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); } 208 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); }
208 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); } 209 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); }