mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
15 lines
268 B
C++
15 lines
268 B
C++
|
#include "ircconnection2.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace providers {
|
||
|
namespace irc {
|
||
|
|
||
|
IrcConnection::IrcConnection(QObject *parent)
|
||
|
: Communi::IrcConnection(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace irc
|
||
|
} // namespace providers
|
||
|
} // namespace chatterino
|