File indexing completed on 2024-04-28 04:00:49

0001 /*
0002     SPDX-FileCopyrightText: 2014 Alejandro Fiestas Olivares <afiestas@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef SOLID_AC_PLUGGED_JOB_P_H
0008 #define SOLID_AC_PLUGGED_JOB_P_H
0009 
0010 #include "job_p.h"
0011 
0012 namespace Solid
0013 {
0014 class AbstractAcPluggedJob;
0015 class AcPluggedJobPrivate : public JobPrivate
0016 {
0017 public:
0018     AcPluggedJobPrivate();
0019 
0020     bool plugged;
0021     bool backendJobFinished;
0022     AbstractAcPluggedJob *backendJob;
0023     Q_DECLARE_PUBLIC(AcPluggedJob)
0024 };
0025 } // Solid namespace
0026 
0027 #endif // SOLID_AC_PLUGGED_JOB_P_H