From d96cd236f3e983ff35ef16f7c9979c8341d5ae0c Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 3 Dec 2011 02:45:55 +0200 Subject: Enforced mod global naming convention and better error reporting --- src/script.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/script.h') diff --git a/src/script.h b/src/script.h index 6da95acf7..3c056ae35 100644 --- a/src/script.h +++ b/src/script.h @@ -23,14 +23,13 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include +typedef struct lua_State lua_State; + class LuaError : public std::exception { public: - LuaError(const std::string &s) - { - m_s = "LuaError: "; - m_s += s; - } + LuaError(lua_State *L, const std::string &s); + virtual ~LuaError() throw() {} virtual const char * what() const throw() @@ -40,8 +39,6 @@ public: std::string m_s; }; -typedef struct lua_State lua_State; - lua_State* script_init(); void script_deinit(lua_State *L); void script_error(lua_State *L, const char *fmt, ...); -- cgit v1.2.3