File indexing completed on 2024-04-28 15:17:53

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 BLUEZQT_JOB_PRIVATE
0008 #define BLUEZQT_JOB_PRIVATE
0009 
0010 #include "job.h"
0011 
0012 class QEventLoop;
0013 
0014 namespace BluezQt
0015 {
0016 class JobPrivate
0017 {
0018 public:
0019     JobPrivate();
0020 
0021     Job *q_ptr;
0022     int error;
0023     QString errorText;
0024     bool running;
0025     bool finished;
0026     bool killed;
0027     QEventLoop *eventLoop;
0028 
0029     Q_DECLARE_PUBLIC(Job)
0030 };
0031 
0032 } // namespace BluezQt
0033 
0034 #endif // BLUEZQT_JOB_PRIVATE