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_JOB_PRIVATE
0008 #define SOLID_JOB_PRIVATE
0009 
0010 #include "job.h"
0011 
0012 class QEventLoop;
0013 
0014 namespace Solid
0015 {
0016 class JobPrivate
0017 {
0018 public:
0019     JobPrivate();
0020     virtual ~JobPrivate() = default;
0021 
0022     Job *q_ptr;
0023     int error;
0024     QString errorText;
0025     QEventLoop *eventLoop;
0026     Q_DECLARE_PUBLIC(Job)
0027 };
0028 }
0029 #endif // SOLID_JOB_PRIVATE