File indexing completed on 2024-04-28 04:38:49

0001 /*
0002     SPDX-FileCopyrightText: 2010 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_GITJOB_H
0008 #define KDEVPLATFORM_PLUGIN_GITJOB_H
0009 
0010 #include <vcs/dvcs/dvcsjob.h>
0011 
0012 class GitJob : public KDevelop::DVcsJob
0013 {
0014     Q_OBJECT
0015     public:
0016         explicit GitJob(const QDir& workingDir, KDevelop::IPlugin* parent = nullptr, KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
0017         
0018 };
0019 
0020 #endif // KDEVPLATFORM_PLUGIN_GITJOB_H