CLuaInstance: Add overloaded member tableLookup() for bool vars

This commit is contained in:
M. Liebmann
2014-09-11 18:17:01 +02:00
parent c49ceac121
commit fc0f5d780a
2 changed files with 13 additions and 0 deletions

View File

@@ -285,6 +285,7 @@ private:
static bool tableLookup(lua_State*, const char*, lua_Integer&);
static bool tableLookup(lua_State*, const char*, lua_Unsigned&);
static bool tableLookup(lua_State*, const char*, void**);
static bool tableLookup(lua_State*, const char*, bool &value);
};
#endif /* _LUAINSTANCE_H */