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_SVNREVERTJOB_P_H
0008 #define KDEVPLATFORM_PLUGIN_SVNREVERTJOB_P_H
0009 
0010 #include "svninternaljobbase.h"
0011 
0012 class SvnInternalRevertJob : public SvnInternalJobBase
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit SvnInternalRevertJob( SvnJobBase* parent = nullptr );
0017     void setLocations( const QList<QUrl>& );
0018     void setRecursive( bool );
0019 
0020     bool recursive() const;
0021     QList<QUrl> locations() const;
0022 protected:
0023     void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override;
0024 private:
0025     QList<QUrl> m_locations;
0026     bool m_recursive = false;
0027 };
0028 
0029 #endif
0030