aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-07-24 13:14:04 (GMT)
committerPavel Labath <pavelo@centrum.sk>2013-02-18 21:04:24 (GMT)
commitadc4d926020fe170cb29c7fac6e30334f96bb51b (patch)
treef9f6a4657609911a10401731982be714a45796e5
parent99c90fa4a55138a943d9cdf18b1cc0d0df0414a9 (diff)
downloadfluxbox_pavel-adc4d926020fe170cb29c7fac6e30334f96bb51b.zip
fluxbox_pavel-adc4d926020fe170cb29c7fac6e30334f96bb51b.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); }