From 24e28d09e64e6c90b0c10e7c6706c27b644007dd Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 25 Oct 2014 09:18:32 +0200 Subject: added static dumpers for stack l handle in LuaVM --- include/luaglue/LuaVM.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/luaglue/LuaVM.hpp b/include/luaglue/LuaVM.hpp index 6055fd4..ec27a4f 100755 --- a/include/luaglue/LuaVM.hpp +++ b/include/luaglue/LuaVM.hpp @@ -36,12 +36,16 @@ class LuaVM void initialize( ); int findValue( const std::string &key ); - - void dumpStackElement( lua_State *l, int i, int indent = 0 ); + static void dumpStackElement( lua_State *l, int i, int indent = 0 ); + private: lua_State *m_lua; std::string m_sourceFilename; + + public: + LUAGLUE_DLL_VISIBLE static void dumpStack( lua_State *l ); + }; #endif -- cgit v1.2.3-54-g00ecf