X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fremotepeer.h;h=6c3e35f415a820ad15058a26e83c0c26e38da393;hb=5745311bc102bf2361cee0f3a5c4d442a05ac64e;hp=e41a6a3bc3d823a3631f59764860f7221ef6d1e7;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a;p=quassel.git diff --git a/src/common/remotepeer.h b/src/common/remotepeer.h index e41a6a3b..6c3e35f4 100644 --- a/src/common/remotepeer.h +++ b/src/common/remotepeer.h @@ -22,14 +22,15 @@ #define REMOTEPEER_H #include -#include +#include "peer.h" #include "protocol.h" #include "signalproxy.h" +class QTcpSocket; class QTimer; -class RemotePeer : public SignalProxy::AbstractPeer +class RemotePeer : public Peer { Q_OBJECT @@ -62,16 +63,13 @@ signals: // this is only used for the auth phase and should be replaced by something more generic void dataReceived(const QVariant &item); - void disconnected(); - void error(QAbstractSocket::SocketError); - void transferProgress(int current, int max); protected: SignalProxy *signalProxy() const; - template - void handle(const T &protoMessage); + using Peer::handle; + using Peer::dispatch; // These protocol messages get handled internally and won't reach SignalProxy void handle(const Protocol::HeartBeat &heartBeat); @@ -91,19 +89,4 @@ private: int _lag; }; -// Template methods we need in the header -template inline -void RemotePeer::handle(const T &protoMessage) -{ - if (!signalProxy()) { - qWarning() << Q_FUNC_INFO << "Cannot handle messages without a SignalProxy!"; - return; - } - - // _heartBeatCount = 0; - - signalProxy()->handle(this, protoMessage); -} - - #endif