23 #ifndef WREPORT_UTILS_LUA_H
24 #define WREPORT_UTILS_LUA_H
29 #ifdef WREPORT_LUA_REQUIRED
30 #error This source requires Lua to compile
42 void push_object(lua_State* L, T* obj,
const char* class_name,
const luaL_Reg* lib)
45 T** s = (T**)lua_newuserdata(L,
sizeof(T*));
49 if (luaL_newmetatable(L, class_name))
52 lua_pushstring(L,
"__index");
57 #if LUA_VERSION_NUM >= 502
58 luaL_setfuncs(L, lib, 0);
60 luaL_register(L, NULL, lib);
64 lua_setmetatable(L, -2);