Release version 0.6-2
[vicar] / src / vicar-lib / src / accountproxy.h
1 /*
2  * This file was generated by qdbusxml2cpp version 0.7
3  * Command line was: qdbusxml2cpp -c AccountProxy -p accountproxy.h:accountproxy.cpp org.freedesktop.Telepathy.Account.xml org.freedesktop.Telepathy.Account
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 ACCOUNTPROXY_H_1281149702
12 #define ACCOUNTPROXY_H_1281149702
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.Telepathy.Account
25  */
26 class AccountProxy: public QDBusAbstractInterface
27 {
28     Q_OBJECT
29 public:
30     static inline const char *staticInterfaceName()
31     { return "org.freedesktop.Telepathy.Account"; }
32
33 public:
34     AccountProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
35
36     ~AccountProxy();
37
38 public Q_SLOTS: // METHODS
39     inline QDBusPendingReply<> Reconnect()
40     {
41         QList<QVariant> argumentList;
42         return asyncCallWithArgumentList(QLatin1String("Reconnect"), argumentList);
43     }
44
45     inline QDBusPendingReply<> Remove()
46     {
47         QList<QVariant> argumentList;
48         return asyncCallWithArgumentList(QLatin1String("Remove"), argumentList);
49     }
50
51     inline QDBusPendingReply<QStringList> UpdateParameters(const QVariantMap &Set, const QStringList &Unset)
52     {
53         QList<QVariant> argumentList;
54         argumentList << qVariantFromValue(Set) << qVariantFromValue(Unset);
55         return asyncCallWithArgumentList(QLatin1String("UpdateParameters"), argumentList);
56     }
57
58 Q_SIGNALS: // SIGNALS
59     void AccountPropertyChanged(const QVariantMap &in0);
60     void Removed();
61 };
62
63 namespace org {
64   namespace freedesktop {
65     namespace Telepathy {
66       typedef ::AccountProxy Account;
67     }
68   }
69 }
70 #endif