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 | class KCompositeJobPrivate : public KJobPrivate |
17 | { |
18 | public: |
19 | KCompositeJobPrivate(); |
20 | ~KCompositeJobPrivate() override; |
21 | |
22 | QList<KJob *> subjobs; |
23 | |
24 | Q_DECLARE_PUBLIC(KCompositeJob) |
25 | }; |
26 | |
27 | #endif |
28 |