1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2016 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 IP6CONFIGINTERFACE_H |
12 | #define IP6CONFIGINTERFACE_H |
13 | |
14 | #include "generictypes.h" |
15 | |
16 | #include <QDBusAbstractInterface> |
17 | #include <QObject> |
18 | #include <QString> |
19 | #include <QStringList> |
20 | #include <QVariant> |
21 | |
22 | /* |
23 | * Proxy class for interface org.freedesktop.NetworkManager.IP6Config |
24 | */ |
25 | class OrgFreedesktopNetworkManagerIP6ConfigInterface : public QDBusAbstractInterface |
26 | { |
27 | Q_OBJECT |
28 | public: |
29 | static inline const char *staticInterfaceName() |
30 | #ifdef NMQT_STATIC |
31 | { |
32 | return "org.kde.fakenetwork.IP6Config" ; |
33 | } |
34 | #else |
35 | { |
36 | return "org.freedesktop.NetworkManager.IP6Config" ; |
37 | } |
38 | #endif |
39 | public: |
40 | OrgFreedesktopNetworkManagerIP6ConfigInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
41 | |
42 | ~OrgFreedesktopNetworkManagerIP6ConfigInterface() override; |
43 | |
44 | Q_PROPERTY(NMVariantMapList AddressData READ addressData) |
45 | inline NMVariantMapList addressData() const |
46 | { |
47 | return qvariant_cast<NMVariantMapList>(v: property(name: "AddressData" )); |
48 | } |
49 | |
50 | Q_PROPERTY(IpV6DBusAddressList Addresses READ addresses) |
51 | inline IpV6DBusAddressList addresses() const |
52 | { |
53 | return qvariant_cast<IpV6DBusAddressList>(v: property(name: "Addresses" )); |
54 | } |
55 | |
56 | Q_PROPERTY(QStringList DnsOptions READ dnsOptions) |
57 | inline QStringList dnsOptions() const |
58 | { |
59 | return qvariant_cast<QStringList>(v: property(name: "DnsOptions" )); |
60 | } |
61 | |
62 | Q_PROPERTY(int DnsPriority READ dnsPriority) |
63 | inline int dnsPriority() const |
64 | { |
65 | return qvariant_cast<int>(v: property(name: "DnsPriority" )); |
66 | } |
67 | |
68 | Q_PROPERTY(QStringList Domains READ domains) |
69 | inline QStringList domains() const |
70 | { |
71 | return qvariant_cast<QStringList>(v: property(name: "Domains" )); |
72 | } |
73 | |
74 | Q_PROPERTY(QString Gateway READ gateway) |
75 | inline QString gateway() const |
76 | { |
77 | return qvariant_cast<QString>(v: property(name: "Gateway" )); |
78 | } |
79 | |
80 | Q_PROPERTY(IpV6DBusNameservers Nameservers READ nameservers) |
81 | inline IpV6DBusNameservers nameservers() const |
82 | { |
83 | return qvariant_cast<IpV6DBusNameservers>(v: property(name: "Nameservers" )); |
84 | } |
85 | |
86 | Q_PROPERTY(NMVariantMapList RouteData READ routeData) |
87 | inline NMVariantMapList routeData() const |
88 | { |
89 | return qvariant_cast<NMVariantMapList>(v: property(name: "RouteData" )); |
90 | } |
91 | |
92 | Q_PROPERTY(IpV6DBusRouteList Routes READ routes) |
93 | inline IpV6DBusRouteList routes() const |
94 | { |
95 | return qvariant_cast<IpV6DBusRouteList>(v: property(name: "Routes" )); |
96 | } |
97 | |
98 | Q_PROPERTY(QStringList Searches READ searches) |
99 | inline QStringList searches() const |
100 | { |
101 | return qvariant_cast<QStringList>(v: property(name: "Searches" )); |
102 | } |
103 | |
104 | public Q_SLOTS: // METHODS |
105 | Q_SIGNALS: // SIGNALS |
106 | void PropertiesChanged(const QVariantMap &properties); |
107 | }; |
108 | |
109 | #endif |
110 | |