File indexing completed on 2024-04-28 16:43:18

0001 /*
0002     SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef NOTIFY_H
0008 #define NOTIFY_H
0009 
0010 #include <QObject>
0011 #include <QStringList>
0012 
0013 #include <BluezQt/PendingCall>
0014 
0015 class Notify : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit Notify(QObject *parent = nullptr);
0021 
0022 public Q_SLOTS:
0023     void connectionFailed(const QString &title, const QString &text);
0024 };
0025 
0026 #endif // NOTIFY_H