X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoretransfer.h;h=7ff943ceaa4afa759bcdf4ac5ec2b2c63cad8bcc;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hp=c8b83d4958e22b4bcb7d84c3c859f11451b1ac36;hpb=e3c42d072b2b8f39c8c9ea44dfc3bded87ae43b0;p=quassel.git diff --git a/src/core/coretransfer.h b/src/core/coretransfer.h index c8b83d49..7ff943ce 100644 --- a/src/core/coretransfer.h +++ b/src/core/coretransfer.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -36,12 +36,14 @@ class CoreTransfer : public Transfer public: CoreTransfer(Direction direction, const QString &nick, const QString &fileName, const QHostAddress &address, quint16 port, quint64 size = 0, QObject *parent = 0); + quint64 transferred() const override; + public slots: void start(); // called through sync calls - void requestAccepted(PeerPtr peer); - void requestRejected(PeerPtr peer); + void requestAccepted(PeerPtr peer) override; + void requestRejected(PeerPtr peer) override; private slots: void startReceiving(); @@ -52,7 +54,7 @@ private slots: private: void setupConnectionForReceive(); bool relayData(const QByteArray &data, bool requireChunkSize); - virtual void cleanUp(); + void cleanUp() override; QPointer _peer; QTcpSocket *_socket;