| 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 CHECKPOINTINTERFACE_H |
| 12 | #define CHECKPOINTINTERFACE_H |
| 13 | |
| 14 | #include "generictypes.h" |
| 15 | |
| 16 | #include <QDBusAbstractInterface> |
| 17 | #include <QDBusObjectPath> |
| 18 | #include <QList> |
| 19 | #include <QObject> |
| 20 | #include <QString> |
| 21 | #include <QVariant> |
| 22 | |
| 23 | /* |
| 24 | * Proxy class for interface org.freedesktop.NetworkManager.Checkpoint |
| 25 | */ |
| 26 | class OrgFreedesktopNetworkManagerCheckpointInterface : public QDBusAbstractInterface |
| 27 | { |
| 28 | Q_OBJECT |
| 29 | public: |
| 30 | static inline const char *staticInterfaceName() |
| 31 | #ifdef NMQT_STATIC |
| 32 | { |
| 33 | return "org.kde.fakenetwork.Checkpoint" ; |
| 34 | } |
| 35 | #else |
| 36 | { |
| 37 | return "org.freedesktop.NetworkManager.Checkpoint" ; |
| 38 | } |
| 39 | #endif |
| 40 | |
| 41 | public: |
| 42 | OrgFreedesktopNetworkManagerCheckpointInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
| 43 | |
| 44 | ~OrgFreedesktopNetworkManagerCheckpointInterface() override; |
| 45 | |
| 46 | Q_PROPERTY(qlonglong Created READ created) |
| 47 | inline qlonglong created() const |
| 48 | { |
| 49 | return qvariant_cast<qlonglong>(v: property(name: "Created" )); |
| 50 | } |
| 51 | |
| 52 | Q_PROPERTY(QList<QDBusObjectPath> Devices READ devices) |
| 53 | inline QList<QDBusObjectPath> devices() const |
| 54 | { |
| 55 | return qvariant_cast<QList<QDBusObjectPath>>(v: property(name: "Devices" )); |
| 56 | } |
| 57 | |
| 58 | Q_PROPERTY(uint RollbackTimeout READ rollbackTimeout) |
| 59 | inline uint rollbackTimeout() const |
| 60 | { |
| 61 | return qvariant_cast<uint>(v: property(name: "RollbackTimeout" )); |
| 62 | } |
| 63 | |
| 64 | public Q_SLOTS: // METHODS |
| 65 | Q_SIGNALS: // SIGNALS |
| 66 | void PropertiesChanged(const QVariantMap &properties); |
| 67 | }; |
| 68 | |
| 69 | #endif |
| 70 | |