summaryrefslogtreecommitdiff
path: root/include/BLua.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-11-20 09:07:24 +0000
committerpixel <pixel>2003-11-20 09:07:24 +0000
commite995cb29c210d8d946c889a6a65dd0e90403e767 (patch)
tree29cace8a313c1e9d9968f54350ff810cb65da99f /include/BLua.h
parentebac9899fe2ef7a672d3728071b3a4179ec5a2df (diff)
Added LUA "compiler" to the code.
Diffstat (limited to 'include/BLua.h')
-rw-r--r--include/BLua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/BLua.h b/include/BLua.h
index fb62b14..19c65c4 100644
--- a/include/BLua.h
+++ b/include/BLua.h
@@ -48,7 +48,8 @@ class Lua : public Base {
lua_CFunction tocfunction(int = -1);
void * touserdata(int = -1);
Lua * tothread(int = -1);
- void load(Handle *) throw (GeneralException) ;
+ void load(Handle *, bool = true) throw (GeneralException);
+ void dump(Handle *, bool = true);
Lua * thread();
static Lua * find(lua_State *) throw (GeneralException);
void showerror();