libkpl  4.1
A Library for Graphical Presentation of Data Sets and Functions
movejob.h
1 //
2 // C++ Interface: movejob
3 //
4 // Description:
5 //
6 //
7 // Author: Werner Stille <tille@uni-freiburg.de>, (C) 2015
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 #ifndef MOVEJOB_H
13 #define MOVEJOB_H
14 
15 #include <QObject>
16 #include <KUrl>
17 #include <kdemacros.h>
18 
19 class KJob;
20 
24 class KDE_EXPORT MoveJob : public QObject
25 {
26  Q_OBJECT
27 public:
34  MoveJob(const QString& src, const KUrl& dest);
36  ~MoveJob();
37 
38 protected slots:
40  void slotIOfinished(KJob*);
41 };
42 
43 #endif
Move job class.
Definition: movejob.h:24