File indexing completed on 2024-05-05 16:47: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_SVNREVERTJOB_H
0008 #define KDEVPLATFORM_PLUGIN_SVNREVERTJOB_H
0009 
0010 #include "svnjobbase.h"
0011 
0012 #include <QUrl>
0013 
0014 class SvnInternalRevertJob;
0015 
0016 class SvnRevertJob : public SvnJobBaseImpl<SvnInternalRevertJob>
0017 {
0018     Q_OBJECT
0019 public:
0020     explicit SvnRevertJob( KDevSvnPlugin* parent );
0021     QVariant fetchResults() override;
0022     void start() override;
0023     void setLocations( const QList<QUrl>& locations );
0024     void setRecursive( bool );
0025 };
0026 
0027 #endif
0028