~fboucault/bamf-qt/more_specific_includes

314 by Olivier Tilloy
BamfWindow proxy code (automatically generated with qdbusxml2cpp).
1
/*
2
 * This file was generated by qdbusxml2cpp version 0.7
3
 * Command line was: qdbusxml2cpp bamf-window-glue.xml -p bamf-window-proxy
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
356.1.1 by Aurelien Gateau
Fix build warnings
11
#ifndef BAMF_WINDOW_PROXY_H_1281086776
12
#define BAMF_WINDOW_PROXY_H_1281086776
314 by Olivier Tilloy
BamfWindow proxy code (automatically generated with qdbusxml2cpp).
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.ayatana.bamf.window
25
 */
26
class OrgAyatanaBamfWindowInterface: public QDBusAbstractInterface
27
{
28
    Q_OBJECT
29
public:
30
    static inline const char *staticInterfaceName()
31
    { return "org.ayatana.bamf.window"; }
32
33
public:
34
    OrgAyatanaBamfWindowInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
35
36
    ~OrgAyatanaBamfWindowInterface();
37
38
public Q_SLOTS: // METHODS
39
    inline QDBusPendingReply<uint> GetXid()
40
    {
41
        QList<QVariant> argumentList;
42
        return asyncCallWithArgumentList(QLatin1String("GetXid"), argumentList);
43
    }
44
45
    inline QDBusPendingReply<QString> Transient()
46
    {
47
        QList<QVariant> argumentList;
48
        return asyncCallWithArgumentList(QLatin1String("Transient"), argumentList);
49
    }
50
51
Q_SIGNALS: // SIGNALS
52
};
53
54
namespace org {
55
  namespace ayatana {
56
    namespace bamf {
57
      typedef ::OrgAyatanaBamfWindowInterface window;
58
    }
59
  }
60
}
61
#endif