1b2c7b248b
In C++20, there will be emit() class member, which can conflict with the emit keyword. Given that, there are plans to enable QT_NO_KEYWORDS by default in the future. See also https://lists.qt-project.org/pipermail/development/2020-February/038812.html
24 lines
460 B
C++
24 lines
460 B
C++
/*
|
|
SPDX-FileCopyrightText: 2016 Martin Graesslin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
|
|
|
#ifndef ONSCREENNOTIFICATIONTEST_H
|
|
#define ONSCREENNOTIFICATIONTEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class OnScreenNotificationTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private Q_SLOTS:
|
|
|
|
void show();
|
|
void timeout();
|
|
void iconName();
|
|
void message();
|
|
};
|
|
|
|
#endif // ONSCREENNOTIFICATIONTEST_H
|