1 | /* |
---|---|
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: qdbusxml2cpp -v -i neard_helper_p.h org.freedesktop.dbus.objectmanager.xml -p dbusobjectmanager_p -v |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2015 The Qt Company Ltd. |
6 | * |
7 | * This is an auto-generated file. |
8 | * Do not edit! All changes made to it will be lost. |
9 | */ |
10 | |
11 | #ifndef DBUSOBJECTMANAGER_H_1409928664 |
12 | #define DBUSOBJECTMANAGER_H_1409928664 |
13 | |
14 | #include <QtCore/QObject> |
15 | #include <QtCore/QByteArray> |
16 | #include <QtCore/QList> |
17 | #include <QtCore/QMap> |
18 | #include <QtCore/QString> |
19 | #include <QtCore/QStringList> |
20 | #include <QtCore/QVariant> |
21 | #include <QtDBus/QtDBus> |
22 | #include "neard_helper_p.h" |
23 | |
24 | /* |
25 | * Proxy class for interface org.freedesktop.DBus.ObjectManager |
26 | */ |
27 | class OrgFreedesktopDBusObjectManagerInterface: public QDBusAbstractInterface |
28 | { |
29 | Q_OBJECT |
30 | public: |
31 | static inline const char *staticInterfaceName() |
32 | { return "org.freedesktop.DBus.ObjectManager"; } |
33 | |
34 | public: |
35 | OrgFreedesktopDBusObjectManagerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); |
36 | |
37 | ~OrgFreedesktopDBusObjectManagerInterface(); |
38 | |
39 | public Q_SLOTS: // METHODS |
40 | inline QDBusPendingReply<ManagedObjectList> GetManagedObjects() |
41 | { |
42 | QList<QVariant> argumentList; |
43 | return asyncCallWithArgumentList(QStringLiteral("GetManagedObjects"), args: argumentList); |
44 | } |
45 | |
46 | Q_SIGNALS: // SIGNALS |
47 | void InterfacesAdded(const QDBusObjectPath &object, InterfaceList interfaces); |
48 | void InterfacesRemoved(const QDBusObjectPath &object, const QStringList &interfaces); |
49 | }; |
50 | |
51 | namespace org { |
52 | namespace freedesktop { |
53 | namespace DBus { |
54 | typedef ::OrgFreedesktopDBusObjectManagerInterface ObjectManager; |
55 | } |
56 | } |
57 | } |
58 | #endif |
59 |