~ken-vandine/libqofono/0.90-suggests

« back to all changes in this revision

Viewing changes to src/dbus/ofononetworkregistration.h

  • Committer: Slava Monich
  • Date: 2015-01-09 11:35:34 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: git-v1:615521ab813a92875390367ef22c6f59c16eabcd
[libqofono] Generate D-Bus stubs at compile time

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file was generated by qdbusxml2cpp version 0.8
3
 
 * Command line was: qdbusxml2cpp -c OfonoNetworkRegistration -p ofononetworkregistration -N ofono_network_registration.xml
4
 
 *
5
 
 * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
6
 
 *
7
 
 * This is an auto-generated file.
8
 
 * Do not edit! All changes made to it will be lost.
9
 
 */
10
 
 
11
 
#ifndef OFONONETWORKREGISTRATION_H_1418934619
12
 
#define OFONONETWORKREGISTRATION_H_1418934619
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 "dbustypes.h"
23
 
 
24
 
/*
25
 
 * Proxy class for interface org.ofono.NetworkRegistration
26
 
 */
27
 
class OfonoNetworkRegistration: public QDBusAbstractInterface
28
 
{
29
 
    Q_OBJECT
30
 
public:
31
 
    static inline const char *staticInterfaceName()
32
 
    { return "org.ofono.NetworkRegistration"; }
33
 
 
34
 
public:
35
 
    OfonoNetworkRegistration(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
36
 
 
37
 
    ~OfonoNetworkRegistration();
38
 
 
39
 
public Q_SLOTS: // METHODS
40
 
    inline QDBusPendingReply<> Deregister()
41
 
    {
42
 
        QList<QVariant> argumentList;
43
 
        return asyncCallWithArgumentList(QLatin1String("Deregister"), argumentList);
44
 
    }
45
 
 
46
 
    inline QDBusPendingReply<ObjectPathPropertiesList> GetOperators()
47
 
    {
48
 
        QList<QVariant> argumentList;
49
 
        return asyncCallWithArgumentList(QLatin1String("GetOperators"), argumentList);
50
 
    }
51
 
 
52
 
    inline QDBusPendingReply<QVariantMap> GetProperties()
53
 
    {
54
 
        QList<QVariant> argumentList;
55
 
        return asyncCallWithArgumentList(QLatin1String("GetProperties"), argumentList);
56
 
    }
57
 
 
58
 
    inline QDBusPendingReply<> Register()
59
 
    {
60
 
        QList<QVariant> argumentList;
61
 
        return asyncCallWithArgumentList(QLatin1String("Register"), argumentList);
62
 
    }
63
 
 
64
 
    inline QDBusPendingReply<ObjectPathPropertiesList> Scan()
65
 
    {
66
 
        QList<QVariant> argumentList;
67
 
        return asyncCallWithArgumentList(QLatin1String("Scan"), argumentList);
68
 
    }
69
 
 
70
 
Q_SIGNALS: // SIGNALS
71
 
    void OperatorsChanged(ObjectPathPropertiesList in0);
72
 
    void PropertyChanged(const QString &in0, const QDBusVariant &in1);
73
 
};
74
 
 
75
 
#endif