diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-07-24 13:14:04 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-07-24 13:14:04 (GMT) |
commit | 2127e4045fbaf1c10acf1df6f43216b4c6df2235 (patch) | |
tree | b911364643ac62acb088d9eea26655db3feddf39 /src/FbTk | |
parent | 41f9e75600c008ffe66063a3e6bb763ab56cc77f (diff) | |
download | fluxbox_pavel-2127e4045fbaf1c10acf1df6f43216b4c6df2235.zip fluxbox_pavel-2127e4045fbaf1c10acf1df6f43216b4c6df2235.tar.bz2 |
luamm: add lua_isuserdata C++ binding
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/Luamm.hh | 1 |
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); } |