mirror-chatterino2/src/providers/irc/IrcServer.hpp

25 lines
657 B
C++
Raw Normal View History

2018-02-05 15:11:50 +01:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "providers/irc/AbstractIrcServer.hpp"
2018-06-26 17:20:03 +02:00
#include "providers/irc/IrcAccount.hpp"
2018-02-05 15:11:50 +01:00
namespace chatterino {
2018-06-26 16:37:59 +02:00
2018-02-05 15:11:50 +01:00
// class IrcServer
//{
// public:
// IrcServer(const QString &hostname, int port);
// void setAccount(std::shared_ptr<IrcAccount> newAccount);
// std::shared_ptr<IrcAccount> getAccount() const;
// protected:
2018-08-06 21:17:03 +02:00
// virtual void initializeConnection(Communi::IrcConnection *connection, bool
// isReadConnection);
2018-02-05 15:11:50 +01:00
// virtual void privateMessageReceived(Communi::IrcPrivateMessage *message);
// virtual void messageReceived(Communi::IrcMessage *message);
//};
2018-06-26 16:37:59 +02:00
//
2018-02-05 15:11:50 +01:00
} // namespace chatterino