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_SVNUPDATEJOB_H
0008 #define KDEVPLATFORM_PLUGIN_SVNUPDATEJOB_H
0009 
0010 #include "svnjobbase.h"
0011 
0012 #include <vcs/vcsrevision.h>
0013 #include <QUrl>
0014 
0015 class SvnInternalUpdateJob;
0016 
0017 class SvnUpdateJob : public SvnJobBaseImpl<SvnInternalUpdateJob>
0018 {
0019     Q_OBJECT
0020 public:
0021     explicit SvnUpdateJob( KDevSvnPlugin* parent );
0022     QVariant fetchResults() override;
0023     void start() override;
0024 
0025     void setLocations( const QList<QUrl>& locations );
0026     void setRecursive( bool );
0027     void setRevision( const KDevelop::VcsRevision& );
0028     void setIgnoreExternals( bool );
0029 };
0030 
0031 #endif
0032