summaryrefslogtreecommitdiff
path: root/plugins-unmaintained/Listener/dbus/Catchcopy.cpp
blob: 6c46af2cb33837ba0e3aeb8a2fcd8be0dc9c65b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "Catchcopy.h"

#include <QCoreApplication>

Catchcopy::Catchcopy()
{
}

void Catchcopy::copy(const QStringList &sources,const QString &destination)
{
	emit newCopy(0,sources,destination);
}

void Catchcopy::move(const QStringList &sources,const QString &destination)
{
	emit newMove(0,sources,destination);
}