~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to solid/modemmanager-0.4/dbus/mm-modem-simpleinterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file was generated by qdbusxml2cpp version 0.7
 
3
 * Command line was: qdbusxml2cpp -N -m -p mm-modem-simpleinterface introspection/mm-modem-simple.xml
 
4
 *
 
5
 * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation 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 MM_MODEM_SIMPLEINTERFACE_H
 
12
#define MM_MODEM_SIMPLEINTERFACE_H
 
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
 
 
23
/*
 
24
 * Proxy class for interface org.freedesktop.ModemManager.Modem.Simple
 
25
 */
 
26
class OrgFreedesktopModemManagerModemSimpleInterface: public QDBusAbstractInterface
 
27
{
 
28
    Q_OBJECT
 
29
public:
 
30
    static inline const char *staticInterfaceName()
 
31
    { return "org.freedesktop.ModemManager.Modem.Simple"; }
 
32
 
 
33
public:
 
34
    OrgFreedesktopModemManagerModemSimpleInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
 
35
 
 
36
    ~OrgFreedesktopModemManagerModemSimpleInterface();
 
37
 
 
38
public Q_SLOTS: // METHODS
 
39
    inline QDBusPendingReply<> Connect(const QVariantMap &properties)
 
40
    {
 
41
        QList<QVariant> argumentList;
 
42
        argumentList << qVariantFromValue(properties);
 
43
        return asyncCallWithArgumentList(QLatin1String("Connect"), argumentList);
 
44
    }
 
45
 
 
46
    inline QDBusPendingReply<QVariantMap> GetStatus()
 
47
    {
 
48
        QList<QVariant> argumentList;
 
49
        return asyncCallWithArgumentList(QLatin1String("GetStatus"), argumentList);
 
50
    }
 
51
 
 
52
Q_SIGNALS: // SIGNALS
 
53
};
 
54
 
 
55
#endif