2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2014-01-17 12:49:41 +00:00
|
|
|
#ifndef NO_KEYWORDS_H
|
|
|
|
#define NO_KEYWORDS_H
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
#define QT_NO_KEYWORDS
|
|
|
|
#undef signals
|
|
|
|
#undef slots
|
|
|
|
#undef emit
|
|
|
|
#define signals FooBar
|
|
|
|
#define slots Baz
|
|
|
|
#define emit Yoyodyne
|
|
|
|
|
2017-01-09 10:39:46 +00:00
|
|
|
#include <QtCore/QtCore>
|
|
|
|
|
|
|
|
#ifdef QT_CONCURRENT_LIB
|
2013-06-06 09:58:19 +00:00
|
|
|
#include <QtConcurrent/QtConcurrent>
|
2017-01-09 10:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef QT_NETWORK_LIB
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <QtNetwork/QtNetwork>
|
2017-01-09 10:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef QT_SQL_LIB
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <QtSql/QtSql>
|
|
|
|
#endif
|
2017-01-09 10:39:46 +00:00
|
|
|
#ifdef QT_DBUS_LIB
|
|
|
|
#include <QtDBus/QtDBus>
|
2011-04-27 10:05:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef signals
|
|
|
|
#undef slots
|
|
|
|
#undef emit
|
|
|
|
|
|
|
|
class MyBooooooostishClass : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
inline MyBooooooostishClass() {}
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void mySignal();
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
inline void mySlot() { mySignal(); }
|
|
|
|
|
|
|
|
private:
|
2020-08-21 15:22:03 +00:00
|
|
|
Q_DECL_UNUSED_MEMBER int signals;
|
|
|
|
Q_DECL_UNUSED_MEMBER double slots;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
2016-05-04 06:07:17 +00:00
|
|
|
#define signals Q_SIGNALS
|
|
|
|
#define slots Q_SLOTS
|
|
|
|
#define emit Q_EMIT
|
2011-04-27 10:05:43 +00:00
|
|
|
#undef QT_NO_KEYWORDS
|
|
|
|
|
2014-01-17 12:49:41 +00:00
|
|
|
#endif // NO_KEYWORDS_H
|