summaryrefslogtreecommitdiff
path: root/plugins-alternative/Listener/dbus/Catchcopy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-alternative/Listener/dbus/Catchcopy.cpp')
-rw-r--r--plugins-alternative/Listener/dbus/Catchcopy.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins-alternative/Listener/dbus/Catchcopy.cpp b/plugins-alternative/Listener/dbus/Catchcopy.cpp
new file mode 100644
index 0000000..6c46af2
--- /dev/null
+++ b/plugins-alternative/Listener/dbus/Catchcopy.cpp
@@ -0,0 +1,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);
+}