14 lines
203 B
C++
14 lines
203 B
C++
#pragma once
|
|
|
|
#include "thread.hpp"
|
|
|
|
class Connection;
|
|
|
|
struct IrcMsgEvent : Event
|
|
{
|
|
IrcMsgEvent(IrcMsg irc) : irc{irc} {}
|
|
IrcMsg irc;
|
|
};
|
|
|
|
auto irc_parse_thread(Connection * connection) -> void;
|