From 9ca7bf6a038eb40824b43d59b3754c0ac96fee3f Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Sun, 3 Jul 2011 00:03:14 +0200 Subject: Luamm: add lua_istable C++ wrapper --- src/FbTk/Luamm.hh | 1 + 1 file changed, 1 insertion(+) 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 { bool isnone(int index) throw() { return lua_isnone(cobj, index); } bool isnumber(int index) throw() { return lua_isnumber(cobj, index); } bool isstring(int index) throw() { return lua_isstring(cobj, index); } + bool istable(int index) throw() { return lua_istable(cobj, index); } void pop(int n = 1) throw() { lua_pop(cobj, n); } void pushboolean(bool b) throw() { lua_pushboolean(cobj, b); } void pushinteger(integer n) throw() { lua_pushinteger(cobj, n); } -- cgit v0.11.2