diff options
author | pixel <pixel> | 2004-05-01 11:48:57 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-05-01 11:48:57 +0000 |
commit | 8c1b2d217ef0a0cf825e873149c06b72b462d6c4 (patch) | |
tree | 6344dbcd6db4b317621977d1bd10352d6d99b84e /include | |
parent | ee584fefbfc67549ae0a8bf6f421b6840cf455de (diff) |
Fixes, changes, improvements, ...
Diffstat (limited to 'include')
-rw-r--r-- | include/BLua.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/BLua.h b/include/BLua.h index dc2d963..4f8acc2 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: BLua.h,v 1.13 2004-02-27 10:35:44 pixel Exp $ */ +/* $Id: BLua.h,v 1.14 2004-05-01 11:48:57 pixel Exp $ */ #ifndef __BLUA_H__ #define __BLUA_H__ @@ -99,6 +99,13 @@ class LuaObject : public Base { bool wantdestruct, pushed; }; +class LuaException : public GeneralException { + public: + LuaException(String); + protected: + LuaException(); +}; + enum Lua_types_t { LUA_ANY = 0, LUA_OBJECT, |