X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclienttransfer.cpp;fp=src%2Fclient%2Fclienttransfer.cpp;h=aab69b3bc35e247478d5687cbbe7fc58386570f3;hp=0000000000000000000000000000000000000000;hb=0d7b511c8510d7fd05d3a704114e34ff37f7a995;hpb=7768b765b21279eadef1400c6c614c63a3db8ed8 diff --git a/src/client/clienttransfer.cpp b/src/client/clienttransfer.cpp new file mode 100644 index 00000000..aab69b3b --- /dev/null +++ b/src/client/clienttransfer.cpp @@ -0,0 +1,51 @@ +/*************************************************************************** + * Copyright (C) 2005-2013 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#include "clienttransfer.h" + +INIT_SYNCABLE_OBJECT(ClientTransfer) +ClientTransfer::ClientTransfer(const QUuid &uuid, QObject *parent) + : Transfer(uuid, parent) +{ + +} + + +QString ClientTransfer::savePath() const +{ + return _savePath; +} + + +void ClientTransfer::accept(const QString &savePath) const +{ + _savePath = savePath; + PeerPtr ptr = 0; + REQUEST_OTHER(requestAccepted, ARG(ptr)); + emit accepted(); +} + + +void ClientTransfer::reject() const +{ + PeerPtr ptr = 0; + REQUEST_OTHER(requestRejected, ARG(ptr)); + emit rejected(); +}