aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-07-24 13:14:04 (GMT)
committerPaul Tagliamonte <paultag@fluxbox.org>2012-04-07 02:11:33 (GMT)
commit801df07362a4d4b0038d2410be001e43cdc74395 (patch)
treefb5e64e7fe50165e02a208eabe22223c6e81e236
parentdfe6f788e08baf42b34e2a4a8a1e24b319de28b4 (diff)
downloadfluxbox_paul-801df07362a4d4b0038d2410be001e43cdc74395.zip
fluxbox_paul-801df07362a4d4b0038d2410be001e43cdc74395.tar.bz2
luamm: add lua_isuserdata C++ binding
-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 96a5eea..110ac97 100644
--- a/src/FbTk/Luamm.hh
+++ b/src/FbTk/Luamm.hh
@@ -204,6 +204,7 @@ namespace lua {
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 bool istable(int index) throw() { return lua_istable(cobj, index); }
207 bool isuserdata(int index) throw() { return lua_isuserdata(cobj, index); }
207 void pop(int n = 1) throw() { lua_pop(cobj, n); } 208 void pop(int n = 1) throw() { lua_pop(cobj, n); }
208 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); } 209 void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); }
209 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); } 210 void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); }