diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-07-02 22:03:14 (GMT) |
---|---|---|
committer | Paul Tagliamonte <paultag@fluxbox.org> | 2012-04-07 02:11:29 (GMT) |
commit | 382c088c5c2955bdd8c6fac0f7d8b0e310f0554f (patch) | |
tree | 7642d3b741b8c3d36a6a32bd0e28accf13f3b457 /src | |
parent | a40b92b8e3e13e131fc3f31bb6d126e033236b3e (diff) | |
download | fluxbox_paul-382c088c5c2955bdd8c6fac0f7d8b0e310f0554f.zip fluxbox_paul-382c088c5c2955bdd8c6fac0f7d8b0e310f0554f.tar.bz2 |
Luamm: add lua_istable C++ wrapper
Diffstat (limited to 'src')
-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 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); } |