File indexing completed on 2024-05-19 04:39:58

0001 /*
0002     This file is part of the KDE project
0003 
0004     SPDX-FileCopyrightText: 2023 Igor Kushnir <igorkuo@gmail.com>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KSIMPLESEQUENTIALCOMPOUNDJOB_H
0010 #define KSIMPLESEQUENTIALCOMPOUNDJOB_H
0011 
0012 #include "ksequentialcompoundjob.h"
0013 
0014 #include <util/utilexport.h>
0015 
0016 namespace KDevCoreAddons
0017 {
0018 /**
0019  * @class KSimpleSequentialCompoundJob ksimplesequentialcompoundjob.h KSimpleSequentialCompoundJob
0020  *
0021  * A sequential compound job with public addSubjob().
0022  * @see KSequentialCompoundJob
0023  */
0024 class KDEVPLATFORMUTIL_EXPORT KSimpleSequentialCompoundJob : public KSequentialCompoundJob
0025 {
0026     Q_OBJECT
0027 public:
0028     using KSequentialCompoundJob::addSubjob;
0029     using KSequentialCompoundJob::KSequentialCompoundJob;
0030 };
0031 
0032 } // namespace KDevCoreAddons
0033 
0034 #endif