1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QTDBUSGLOBAL_H |
5 | #define QTDBUSGLOBAL_H |
6 | |
7 | #if 0 |
8 | #pragma qt_deprecates(qdbusmacros.h) |
9 | #endif |
10 | |
11 | #include <QtCore/qglobal.h> |
12 | #include <QtCore/qmetatype.h> |
13 | #include <QtCore/qvariant.h> |
14 | |
15 | #ifndef Q_MOC_RUN |
16 | # define Q_NOREPLY |
17 | #endif |
18 | |
19 | #ifdef Q_CC_MSVC |
20 | #include <QtCore/qlist.h> |
21 | #include <QtCore/qset.h> |
22 | #endif |
23 | |
24 | #ifndef QT_NO_DBUS |
25 | #include <QtDBus/qtdbusexports.h> |
26 | #endif // QT_NO_DBUS |
27 | |
28 | #endif |
29 | |