1 | /*
|
---|
2 | * This file was generated by dbusxml2cpp version 0.6
|
---|
3 | * Command line was: dbusxml2cpp -p chat_interface.h: com.trolltech.chat.xml
|
---|
4 | *
|
---|
5 | * dbusxml2cpp is Copyright (C) 2009 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 CHAT_INTERFACE_H_143021156243606
|
---|
12 | #define CHAT_INTERFACE_H_143021156243606
|
---|
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 com.trolltech.chat
|
---|
25 | */
|
---|
26 | class ComTrolltechChatInterface: public QDBusAbstractInterface
|
---|
27 | {
|
---|
28 | Q_OBJECT
|
---|
29 | public:
|
---|
30 | static inline const char *staticInterfaceName()
|
---|
31 | { return "com.trolltech.chat"; }
|
---|
32 |
|
---|
33 | public:
|
---|
34 | ComTrolltechChatInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
|
---|
35 |
|
---|
36 | ~ComTrolltechChatInterface();
|
---|
37 |
|
---|
38 | public Q_SLOTS: // METHODS
|
---|
39 | Q_SIGNALS: // SIGNALS
|
---|
40 | void action(const QString &nickname, const QString &text);
|
---|
41 | void message(const QString &nickname, const QString &text);
|
---|
42 | };
|
---|
43 |
|
---|
44 | namespace com {
|
---|
45 | namespace trolltech {
|
---|
46 | typedef ::ComTrolltechChatInterface chat;
|
---|
47 | }
|
---|
48 | }
|
---|
|
---|