/* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -N -m -i generictypes.h -p locationinterface \ * /home/jgrulich/development/projects/libmm-qt/dbus/introspection/org.freedesktop.ModemManager1.Modem.Location.xml * * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef MODEMMANAGERQT_LOCATIONINTERFACE_H #define MODEMMANAGERQT_LOCATIONINTERFACE_H #include "generictypes.h" #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.ModemManager1.Modem.Location */ class OrgFreedesktopModemManager1ModemLocationInterface : public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() #ifdef MMQT_STATIC { return "org.kde.fakemodem.Modem.Location"; } #else { return "org.freedesktop.ModemManager1.Modem.Location"; } #endif public: OrgFreedesktopModemManager1ModemLocationInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); ~OrgFreedesktopModemManager1ModemLocationInterface() override; Q_PROPERTY(uint Capabilities READ capabilities) inline uint capabilities() const { return qvariant_cast(property("Capabilities")); } Q_PROPERTY(uint Enabled READ enabled) inline uint enabled() const { return qvariant_cast(property("Enabled")); } Q_PROPERTY(ModemManager::LocationInformationMap Location READ location) inline ModemManager::LocationInformationMap location() const { return qvariant_cast(property("Location")); } Q_PROPERTY(bool SignalsLocation READ signalsLocation) inline bool signalsLocation() const { return qvariant_cast(property("SignalsLocation")); } public Q_SLOTS: // METHODS inline QDBusPendingReply GetLocation() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("GetLocation"), argumentList); } inline QDBusPendingReply<> Setup(uint sources, bool signal_location) { QList argumentList; argumentList << QVariant::fromValue(sources) << QVariant::fromValue(signal_location); return asyncCallWithArgumentList(QLatin1String("Setup"), argumentList); } Q_SIGNALS: // SIGNALS }; #endif