From 6572077c73406cf6c353395aad13d493929a1596 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 21 Apr 2024 16:37:31 +0500 Subject: feat: say() method --- src/irc/client.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/irc/client.cpp') diff --git a/src/irc/client.cpp b/src/irc/client.cpp index 08a3ff3..dde9a5c 100644 --- a/src/irc/client.cpp +++ b/src/irc/client.cpp @@ -90,6 +90,10 @@ void Client::run() { this->websocket.run(); } +void Client::say(const std::string &channel_login, const std::string &message) { + this->raw("PRIVMSG #" + channel_login + " :" + message); +} + bool Client::join(const std::string &channel_login) { auto already_joined = std::any_of(this->joined_channels.begin(), this->joined_channels.end(), -- cgit v1.2.3