File indexing completed on 2024-10-06 04:55:04
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 #pragma once 0008 0009 #include <QObject> 0010 #include <QStringList> 0011 0012 #include <BluezQt/PendingCall> 0013 0014 #include <qqmlregistration.h> 0015 0016 class Notify : public QObject 0017 { 0018 Q_OBJECT 0019 QML_ELEMENT 0020 QML_SINGLETON 0021 0022 public: 0023 explicit Notify(QObject *parent = nullptr); 0024 0025 public Q_SLOTS: 0026 void connectionFailed(const QString &title, const QString &text); 0027 };