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_H
0008 #define KDEVPLATFORM_PLUGIN_SVNCOPYJOB_H
0009 
0010 #include "svnjobbase.h"
0011 
0012 #include <QUrl>
0013 
0014 class SvnInternalCopyJob;
0015 
0016 class SvnCopyJob : public SvnJobBaseImpl<SvnInternalCopyJob>
0017 {
0018     Q_OBJECT
0019 public:
0020     explicit SvnCopyJob( KDevSvnPlugin* parent );
0021     QVariant fetchResults() override;
0022     void start() override;
0023     void setSourceLocation( const QUrl &location );
0024     void setDestinationLocation( const QUrl &location );
0025 };
0026 
0027 
0028 #endif