File indexing completed on 2024-05-05 04:41:01

0001 /*
0002     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_SVNCOPYJOB_P_H
0008 #define KDEVPLATFORM_PLUGIN_SVNCOPYJOB_P_H
0009 
0010 #include "svninternaljobbase.h"
0011 
0012 class SvnInternalCopyJob : public SvnInternalJobBase
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit SvnInternalCopyJob( SvnJobBase* parent = nullptr );
0017     void setSourceLocation( const QUrl& );
0018     void setDestinationLocation( const QUrl& );
0019 
0020     QUrl sourceLocation() const;
0021     QUrl destinationLocation() const;
0022 protected:
0023     void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override;
0024 private:
0025     QUrl m_sourceLocation;
0026     QUrl m_destinationLocation;
0027 };
0028 
0029 
0030 #endif