1 | /* |
2 | This file is part of the KDE project |
3 | |
4 | SPDX-FileCopyrightText: 2006 Kevin Ottens <ervin@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef KCOMPOSITEJOB_P_H |
10 | #define KCOMPOSITEJOB_P_H |
11 | |
12 | #include "kcompositejob.h" |
13 | |
14 | #include "kjob_p.h" |
15 | |
16 | // This is a private class, but it's exported for |
17 | // KIO::Job's usage. Other Job classes in kdelibs may |
18 | // use it too. |
19 | class KCOREADDONS_EXPORT KCompositeJobPrivate : public KJobPrivate |
20 | { |
21 | public: |
22 | KCompositeJobPrivate(); |
23 | ~KCompositeJobPrivate() override; |
24 | |
25 | QList<KJob *> subjobs; |
26 | |
27 | Q_DECLARE_PUBLIC(KCompositeJob) |
28 | }; |
29 | |
30 | #endif |
31 | |