diff options
Diffstat (limited to 'src/irc/irc_client.hpp')
-rw-r--r-- | src/irc/irc_client.hpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index bb51a4e..d9ea069 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -45,6 +45,10 @@ public: */ IrcChannel* get_channel(const std::string& name); /** + * Returns true if the channel is joined + */ + bool is_channel_joined(const std::string& name); + /** * Return our own nick */ std::string get_own_nick() const; @@ -67,7 +71,7 @@ public: */ void send_nick_command(const std::string& username); /** - * Send the JOIN irc command + * Send the JOIN irc command. */ void send_join_command(const std::string& chan_name); /** @@ -119,6 +123,10 @@ public: */ void on_part(const IrcMessage& message); /** + * When a NICK message is received + */ + void on_nick(const IrcMessage& message); + /** * When a QUIT message is received */ void on_quit(const IrcMessage& message); |