mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
26 lines
732 B
C++
26 lines
732 B
C++
#pragma once
|
|
|
|
#include "providers/irc/ircaccount.hpp"
|
|
#include "providers/irc/abstractircserver.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace providers {
|
|
namespace irc {
|
|
// class IrcServer
|
|
//{
|
|
// public:
|
|
// IrcServer(const QString &hostname, int port);
|
|
|
|
// void setAccount(std::shared_ptr<IrcAccount> newAccount);
|
|
// std::shared_ptr<IrcAccount> getAccount() const;
|
|
|
|
// protected:
|
|
// virtual void initializeConnection(Communi::IrcConnection *connection, bool isReadConnection);
|
|
|
|
// virtual void privateMessageReceived(Communi::IrcPrivateMessage *message);
|
|
// virtual void messageReceived(Communi::IrcMessage *message);
|
|
//};
|
|
} // namespace irc
|
|
} // namespace providers
|
|
} // namespace chatterino
|