IRCClient: Add ability to send query messages.

You can't open a query yet, but if someone starts one with you, you can
respond at least.
This commit is contained in:
Andreas Kling 2019-03-15 18:02:38 +01:00
commit 08c15be0ca
Notes: sideshowbarker 2024-07-19 15:02:24 +09:00
5 changed files with 21 additions and 3 deletions

View file

@ -22,6 +22,8 @@ public:
const IRCLogBuffer& log() const { return *m_log; }
IRCLogBuffer& log() { return *m_log; }
void say(const String&);
private:
IRCQuery(IRCClient&, const String& name);