| 1 | /* |
| 2 | * This file was generated by qdbusxml2cpp version 0.8 |
| 3 | * Source file was org.freedesktop.dbus.objectmanager.xml |
| 4 | * |
| 5 | * qdbusxml2cpp is Copyright (C) The Qt Company Ltd. and other contributors. |
| 6 | * |
| 7 | * This is an auto-generated file. |
| 8 | * Do not edit! All changes made to it will be lost. |
| 9 | */ |
| 10 | |
| 11 | #ifndef OBJECTMANAGER_P_H |
| 12 | #define OBJECTMANAGER_P_H |
| 13 | |
| 14 | // |
| 15 | // W A R N I N G |
| 16 | // ------------- |
| 17 | // |
| 18 | // This file is not part of the Qt API. It exists purely as an |
| 19 | // implementation detail. This header file may change from version to |
| 20 | // version without notice, or even be removed. |
| 21 | // |
| 22 | // We mean it. |
| 23 | // |
| 24 | |
| 25 | #include <QtCore/QObject> |
| 26 | #include <QtCore/QByteArray> |
| 27 | #include <QtCore/QList> |
| 28 | #include <QtCore/QMap> |
| 29 | #include <QtCore/QString> |
| 30 | #include <QtCore/QStringList> |
| 31 | #include <QtCore/QVariant> |
| 32 | #include <QtDBus/QtDBus> |
| 33 | #include "bluez5_helper_p.h" |
| 34 | #include <QtCore/private/qglobal_p.h> |
| 35 | |
| 36 | namespace QtBluetoothPrivate { |
| 37 | |
| 38 | /* |
| 39 | * Proxy class for interface org.freedesktop.DBus.ObjectManager |
| 40 | */ |
| 41 | class OrgFreedesktopDBusObjectManagerInterface: public QDBusAbstractInterface |
| 42 | { |
| 43 | Q_OBJECT |
| 44 | public: |
| 45 | static inline const char *staticInterfaceName() |
| 46 | { return "org.freedesktop.DBus.ObjectManager" ; } |
| 47 | |
| 48 | public: |
| 49 | OrgFreedesktopDBusObjectManagerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
| 50 | |
| 51 | ~OrgFreedesktopDBusObjectManagerInterface(); |
| 52 | |
| 53 | public Q_SLOTS: // METHODS |
| 54 | inline QDBusPendingReply<ManagedObjectList> GetManagedObjects() |
| 55 | { |
| 56 | QList<QVariant> argumentList; |
| 57 | return asyncCallWithArgumentList(QStringLiteral("GetManagedObjects" ), args: argumentList); |
| 58 | } |
| 59 | |
| 60 | Q_SIGNALS: // SIGNALS |
| 61 | void InterfacesAdded(const QDBusObjectPath &object_path, InterfaceList interfaces_and_properties); |
| 62 | void InterfacesRemoved(const QDBusObjectPath &object_path, const QStringList &interfaces); |
| 63 | }; |
| 64 | |
| 65 | } // end of namespace QtBluetoothPrivate |
| 66 | |
| 67 | namespace org { |
| 68 | namespace freedesktop { |
| 69 | namespace DBus { |
| 70 | using ObjectManager = ::QtBluetoothPrivate::OrgFreedesktopDBusObjectManagerInterface; |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | #endif |
| 76 | |