diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-07-21 18:15:37 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-07-21 18:56:03 (GMT) |
commit | 12024c66fe21c62b158552abe26b1bcfa142ffe8 (patch) | |
tree | cfedc6e34b147bbb05fedfd69eeaad27bd5eadbd /Swiftob/LuaCommands.h | |
parent | 2a690f23a71f5f24550df112e0544b32826655db (diff) | |
download | swift-contrib-12024c66fe21c62b158552abe26b1bcfa142ffe8.zip swift-contrib-12024c66fe21c62b158552abe26b1bcfa142ffe8.tar.bz2 |
Allowing generic message listeners for Swiftob bots
Diffstat (limited to 'Swiftob/LuaCommands.h')
-rw-r--r-- | Swiftob/LuaCommands.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiftob/LuaCommands.h b/Swiftob/LuaCommands.h index fc743ca..b82959e 100644 --- a/Swiftob/LuaCommands.h +++ b/Swiftob/LuaCommands.h @@ -64,8 +64,9 @@ class LuaCommands { }; LuaCommands(Commands* commands, const std::string& path, Client* client, TimerFactory* timerFactory, MUCs* mucs); - /* Public but isn't really part of the API */ + /* Public but aren't really part of the API */ void handleLuaCommand(int callbackIndex, lua_State* L, const std::string& command, const std::string& params, Message::ref message); + void handleLuaListener(int callbackIndex, lua_State* L, Message::ref message); Commands* getCommands() {return commands_;} int get_software_version(lua_State *L); int muc_input_to_jid(lua_State *L); |