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 | #include <QtCore/qglobal.h> |
8 | #include <QtCore/qmetatype.h> |
9 | #include <QtCore/qvariant.h> |
10 | |
11 | #ifndef Q_MOC_RUN |
12 | # define Q_NOREPLY |
13 | #endif |
14 | |
15 | #ifdef Q_CC_MSVC |
16 | #include <QtCore/qlist.h> |
17 | #include <QtCore/qset.h> |
18 | #endif |
19 | |
20 | #ifndef QT_NO_DBUS |
21 | #include <QtDBus/qtdbusexports.h> |
22 | #endif // QT_NO_DBUS |
23 | |
24 | #endif |
25 |