File indexing completed on 2024-05-19 03:56:21

0001 /*
0002     This file is part of the KDE project
0003 
0004     SPDX-FileCopyrightText: 2006 Kevin Ottens <ervin@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #ifndef KCOMPOSITEJOB_P_H
0010 #define KCOMPOSITEJOB_P_H
0011 
0012 #include "kcompositejob.h"
0013 
0014 #include "kjob_p.h"
0015 
0016 // This is a private class, but it's exported for
0017 // KIO::Job's usage. Other Job classes in kdelibs may
0018 // use it too.
0019 class KCOREADDONS_EXPORT KCompositeJobPrivate : public KJobPrivate
0020 {
0021 public:
0022     KCompositeJobPrivate();
0023     ~KCompositeJobPrivate() override;
0024 
0025     QList<KJob *> subjobs;
0026 
0027     Q_DECLARE_PUBLIC(KCompositeJob)
0028 };
0029 
0030 #endif