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

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