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

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_SVNADDJOB_H
0008 #define KDEVPLATFORM_PLUGIN_SVNADDJOB_H
0009 
0010 #include "svnjobbase.h"
0011 
0012 #include <QUrl>
0013 
0014 class SvnInternalAddJob;
0015 
0016 class SvnAddJob : public SvnJobBaseImpl<SvnInternalAddJob>
0017 {
0018     Q_OBJECT
0019 public:
0020     explicit SvnAddJob( KDevSvnPlugin* parent );
0021     QVariant fetchResults() override;
0022     void start() override;
0023 
0024     void setLocations( const QList<QUrl>& locations );
0025     void setRecursive( bool );
0026 };
0027 
0028 #endif
0029