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

0001 /*
0002     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0003     SPDX-FileCopyrightText: 2007 Dukju Ahn <dukjuahn@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KDEVPLATFORM_PLUGIN_SVNCOMMITJOB_H
0009 #define KDEVPLATFORM_PLUGIN_SVNCOMMITJOB_H
0010 
0011 #include "svnjobbase.h"
0012 #include <QUrl>
0013 #include <ThreadWeaver/Job>
0014 
0015 class SvnInternalCommitJob;
0016 class SvnCommitDialog;
0017 
0018 class SvnCommitJob : public SvnJobBaseImpl<SvnInternalCommitJob>
0019 {
0020     Q_OBJECT
0021 public:
0022     explicit SvnCommitJob( KDevSvnPlugin* parent );
0023     QVariant fetchResults() override;
0024     void start() override;
0025     void setCommitMessage( const QString& msg );
0026     void setKeepLock( bool );
0027     void setUrls( const QList<QUrl>& urls );
0028     void setRecursive( bool );
0029 };
0030 
0031 #endif
0032