File indexing completed on 2024-05-05 04:38:44

0001 /*
0002     SPDX-FileCopyrightText: 2007-2008 Hamish Rodda <rodda@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_EXECUTECOMPOSITEJOB_H
0008 #define KDEVPLATFORM_EXECUTECOMPOSITEJOB_H
0009 
0010 #include "utilexport.h"
0011 
0012 #include "kdevcoreaddons/ksequentialcompoundjob.h"
0013 
0014 namespace KDevelop {
0015 class KDEVPLATFORMUTIL_EXPORT ExecuteCompositeJob : public KDevCoreAddons::KSequentialCompoundJob
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit ExecuteCompositeJob(QObject* parent = nullptr, const QList<KJob*>& jobs = {});
0020     ~ExecuteCompositeJob() override;
0021 };
0022 }
0023 
0024 #endif